Update requirements for urllib3 for python 2.6.
This commit is contained in:
parent
53217a3dbd
commit
d048785640
3 changed files with 2 additions and 3 deletions
|
@ -1,2 +0,0 @@
|
|||
cryptography < 2.2 ; python_version < "2.7" # cryptography 2.2+ requires python 2.7+
|
||||
pyopenssl < 18.0 ; python_version < "2.7" # pyopenssl 18.0+ requires python 2.7+
|
|
@ -285,7 +285,7 @@
|
|||
pip:
|
||||
name: "{{ item }}"
|
||||
state: latest
|
||||
extra_args: "-c {{ role_path }}/files/constraints.txt"
|
||||
extra_args: "-c {{ role_path }}/../../../runner/requirements/constraints.txt"
|
||||
with_items:
|
||||
- urllib3
|
||||
- PyOpenSSL
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
coverage >= 4.2, != 4.3.2 # features in 4.2+ required, avoid known bug in 4.3.2 on python 2.6
|
||||
cryptography < 2.2 ; python_version < '2.7' # cryptography 2.2 drops support for python 2.6
|
||||
urllib3 < 1.24 ; python_version < '2.7' # urllib3 1.24 and later require python 2.7 or later
|
||||
pywinrm >= 0.3.0 # message encryption support
|
||||
sphinx < 1.6 ; python_version < '2.7' # sphinx 1.6 and later require python 2.7 or later
|
||||
sphinx < 1.8 ; python_version >= '2.7' # sphinx 1.8 and later are currently incompatible with rstcheck 3.3
|
||||
|
|
Loading…
Reference in a new issue