Browse code

Update test constraints. (#44975)

- Limit virtualenv version on Python 2.6.
- Limit pyopenssl version on Python 2.6.
- Pin pyfmg version to keep unit tests passing.

(cherry picked from commit b3a3e8ba7b7075317604275b730c5214c1150144)

Matt Clay authored on 2018/09/04 01:34:22
Showing 1 changed files
... ...
@@ -17,3 +17,6 @@ ntlm-auth >= 1.0.6 # message encryption support
17 17
 requests-ntlm >= 1.1.0 # message encryption support
18 18
 requests-credssp >= 0.1.0 # message encryption support
19 19
 voluptuous >= 0.11.0 # Schema recursion via Self
20
+virtualenv < 16.0.0 ; python_version < '2.7' # virtualenv 16.0.0 and later require python 2.7 or later
21
+pyopenssl < 18.0.0 ; python_version < '2.7' # pyOpenSSL 18.0.0 and later require python 2.7 or later
22
+pyfmg == 0.6.1 # newer versions do not pass current unit tests