mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 05:04:03 +00:00
Use latest pyOpenSSL for all travis tests environments
SSLv2 was removed from OpenSSL 1.0 and above but it is still referenced by pyOpenSSL < 0.13. Travis workers are precise hosts with OpenSSL 1.0 and pyOpenSSL 0.12 (!) with a debian patch to workaround this problem that is not present in pyOpenSSL 0.12 shipped by PyPi. Trying to install pyOpenSSL 0.10 or 0.12 from packages at PyPi under a system with OpenSSL >= 1.0 will success but fails at import time with a message similar to: ImportError: .../lib/python2.7/site-packages/OpenSSL/SSL.so: undefined symbol: SSLv2_method
This commit is contained in:
parent
9968f99e06
commit
c43931ea8c
@ -1,4 +1,5 @@
|
||||
pyOpenSSL==0.10
|
||||
# travis workers uses openssl 1.0 that fails for pyOpenSSL < 0.13
|
||||
pyOpenSSL
|
||||
lxml==2.2.4
|
||||
twisted==10.0.0
|
||||
boto==1.9b
|
||||
|
@ -1,4 +1,5 @@
|
||||
pyOpenSSL==0.12
|
||||
# travis workers uses openssl 1.0 that fails for pyOpenSSL < 0.13
|
||||
pyOpenSSL
|
||||
lxml==2.3.2
|
||||
twisted==11.1.0
|
||||
boto==2.2.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user