Merge pull request #3918 from rennerocha/fix-lxml-py34

Added constrain on lxml version to avoid error when using Python 3.4 (#3912)
This commit is contained in:
Daniel Graña 2019-07-30 22:21:49 -03:00 committed by GitHub
commit c5b8cc4a87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,6 @@
Twisted>=17.9.0
lxml>=3.2.4
lxml;python_version!="3.4"
lxml<=4.3.5;python_version=="3.4"
pyOpenSSL>=0.13.1
cssselect>=0.9
queuelib>=1.1.1

View File

@ -69,7 +69,8 @@ setup(
'Twisted>=13.1.0,<=19.2.0;python_version=="3.4"',
'w3lib>=1.17.0',
'queuelib',
'lxml',
'lxml;python_version!="3.4"',
'lxml<=4.3.5;python_version=="3.4"',
'pyOpenSSL',
'cssselect>=0.9',
'six>=1.5.2',

View File

@ -1,2 +1 @@
Twisted!=18.4.0
lxml!=4.2.2
Twisted!=18.4.0