From 9a135fbcefe8d3b458e0f7f326b5b7b29159cc48 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 19 Mar 2019 07:15:28 -0700 Subject: [PATCH] Add constraint for deepdiff. --- test/runner/requirements/constraints.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runner/requirements/constraints.txt b/test/runner/requirements/constraints.txt index 5c01db4efb..e1db90965f 100644 --- a/test/runner/requirements/constraints.txt +++ b/test/runner/requirements/constraints.txt @@ -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 +deepdiff < 4.0.0 ; python_version < '3' # deepdiff 4.0.0 and later require python 3 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