Added constrain on lxml version based on Python version

This commit is contained in:
Renne Rocha 2019-07-29 19:07:34 -03:00 committed by Daniel Graña
parent b01d012b5a
commit a25e09ecdd
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