Merge pull request #3825 from Gallaecio/fix-py34-setup

Require Twisted<=19.2.0 for Python 3.4
This commit is contained in:
Daniel Graña 2019-06-12 17:40:26 -03:00 committed by GitHub
commit 66c40d0e5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ setup(
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=[
'Twisted>=13.1.0',
'Twisted>=13.1.0;python_version!="3.4"',
'Twisted>=13.1.0,<=19.2.0;python_version=="3.4"',
'w3lib>=1.17.0',
'queuelib',
'lxml',