require w3lib 1.2 or greater

This commit is contained in:
Daniel Graña 2012-05-15 17:11:51 -03:00
parent ae2ff4d33a
commit d74a067227
2 changed files with 2 additions and 2 deletions

2
debian/control vendored
View File

@ -8,7 +8,7 @@ Homepage: http://scrapy.org/
Package: scrapy-SUFFIX
Architecture: all
Depends: ${python:Depends}, python-lxml, python-twisted, python-openssl, python-w3lib (>= 1.1-r23)
Depends: ${python:Depends}, python-lxml, python-twisted, python-openssl, python-w3lib (>= 1.2)
Recommends: python-setuptools
Conflicts: python-scrapy, scrapy, scrapy-0.11
Provides: python-scrapy, scrapy

View File

@ -120,6 +120,6 @@ try:
except ImportError:
from distutils.core import setup
else:
setup_args['install_requires'] = ['Twisted>=8.0', 'w3lib>=1.1', 'lxml', 'pyOpenSSL']
setup_args['install_requires'] = ['Twisted>=8.0', 'w3lib>=1.2', 'lxml', 'pyOpenSSL']
setup(**setup_args)