From ab046755bb8cc3a59029d3e97725c106d50b56f6 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 29 May 2023 15:27:27 +0200 Subject: [PATCH] CI: restrict to python-nomad < 2.0.0 for Python < 3.7 (#6578) Restrict to python-nomad < 2.0.0 for Python < 3.7. --- tests/utils/constraints.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/utils/constraints.txt b/tests/utils/constraints.txt index 87db256f41..4fb5276e23 100644 --- a/tests/utils/constraints.txt +++ b/tests/utils/constraints.txt @@ -21,6 +21,7 @@ pycrypto >= 2.6 # Need features found in 2.6 and greater ncclient >= 0.5.2 # Need features added in 0.5.2 and greater idna < 2.6, >= 2.5 # linode requires idna < 2.9, >= 2.5, requests requires idna < 2.6, but cryptography will cause the latest version to be installed instead paramiko < 2.4.0 ; python_version < '2.7' # paramiko 2.4.0 drops support for python 2.6 +python-nomad < 2.0.0 ; python_version <= '3.7' # python-nomad 2.0.0 needs Python 3.7+ pytest < 3.3.0 ; python_version < '2.7' # pytest 3.3.0 drops support for python 2.6 pytest < 5.0.0 ; python_version == '2.7' # pytest 5.0.0 and later will no longer support python 2.7 pytest-forked < 1.0.2 ; python_version < '2.7' # pytest-forked 1.0.2 and later require python 2.7 or later