From 4667e6b3613883ae1274218dd7ab1903be36e099 Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Thu, 9 Jun 2022 09:05:56 +0200 Subject: [PATCH] Stop using openstack upper constraints We want to be able to support older Python versions than those that are possible with the current OpenStack constraints. Run unit tests without constraints instead. Change-Id: I4237a56ff9733b5e3c9521193cc5e9758c28095e --- tox.ini | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tox.ini b/tox.ini index 09e15713..1640248a 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,6 @@ ignore_basepython_conflict = True usedevelop = True basepython = python3 deps= - -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands= stestr run --slowest {posargs} @@ -73,9 +72,3 @@ deps = -c{toxinidir}/lower-constraints.txt -r{toxinidir}/test-requirements.txt -r{toxinidir}/requirements.txt - -# Run without upper-constraints on python3.5, as since Victoria that -# now is python3.6 only -[testenv:py35] -basepython = python3.5 -deps = {[testenv:lower-constraints]deps}