mirror of https://github.com/scrapy/scrapy.git
bumped required w3lib version to 1.1, after refactoring encoding detection to use the new w3lib.encoding module
This commit is contained in:
parent
798169805a
commit
de3a3b68dc
2
setup.py
2
setup.py
|
|
@ -123,7 +123,7 @@ try:
|
|||
except ImportError:
|
||||
from distutils.core import setup
|
||||
else:
|
||||
setup_args['install_requires'] = ['Twisted>=2.5', 'w3lib', 'pyOpenSSL']
|
||||
setup_args['install_requires'] = ['Twisted>=2.5', 'w3lib>=1.1', 'pyOpenSSL']
|
||||
if sys.version_info < (2, 6):
|
||||
setup_args['install_requires'] += ['simplejson']
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in New Issue