From b3a3e8ba7b7075317604275b730c5214c1150144 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 3 Sep 2018 09:34:22 -0700 Subject: [PATCH] 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. --- test/runner/requirements/constraints.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runner/requirements/constraints.txt b/test/runner/requirements/constraints.txt index c12fbe334e8..99ff4ed9038 100644 --- a/test/runner/requirements/constraints.txt +++ b/test/runner/requirements/constraints.txt @@ -18,3 +18,6 @@ requests-ntlm >= 1.1.0 # message encryption support requests-credssp >= 0.1.0 # message encryption support voluptuous >= 0.11.0 # Schema recursion via Self openshift >= 0.6.2 # merge_type support +virtualenv < 16.0.0 ; python_version < '2.7' # virtualenv 16.0.0 and later require python 2.7 or later +pyopenssl < 18.0.0 ; python_version < '2.7' # pyOpenSSL 18.0.0 and later require python 2.7 or later +pyfmg == 0.6.1 # newer versions do not pass current unit tests