mirror of https://github.com/scrapy/scrapy.git
Added constrain on lxml version based on Python version
This commit is contained in:
parent
b01d012b5a
commit
a25e09ecdd
|
|
@ -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
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -1,2 +1 @@
|
|||
Twisted!=18.4.0
|
||||
lxml!=4.2.2
|
||||
Twisted!=18.4.0
|
||||
Loading…
Reference in New Issue