Skip to content

Commit

Permalink
Merge pull request #429 from scrapy/setup-py-edits
Browse files Browse the repository at this point in the history
[setup.py] remove enum-compat
  • Loading branch information
pawelmhm authored Jan 12, 2022
2 parents a53b33d + b40bd48 commit c1a7a06
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Scrapyd depends on the following libraries, but the installation process
takes care of installing the missing ones:

* Python 3.6 or above
* Scrapy 2 or above
* Scrapy 1.2 or above
* Twisted 17.9 or above

Installing Scrapyd (generic way)
--------------------------------
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@

if using_setuptools:
setup_args['install_requires'] = [
'Twisted>=8.0',
'Scrapy>=2.0',
'six',
'enum-compat',
'Twisted>=17.9',
'Scrapy>=1.2.0',
'six'
]
setup_args['entry_points'] = {'console_scripts': [
'scrapyd = scrapyd.scripts.scrapyd_run:main'
Expand Down

0 comments on commit c1a7a06

Please sign in to comment.