summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwu.shiming <wushiming@yovole.com>2020-11-11 18:30:27 +0800
committerTim Burke <tim.burke@gmail.com>2021-05-25 11:23:34 -0700
commitc0bb5b2f3f9e0cf838ba1f6b3364ec7211eeee60 (patch)
tree8c768e1be65c0bd92f216013fdb69aecfb17c942
parentbdb4510e05863942d0452db6e1d399b1921eeff7 (diff)
downloadswift-c0bb5b2f3f9e0cf838ba1f6b3364ec7211eeee60.tar.gz
Dep's should be restricted by upper-constraints
Tox trying to install latest versions for building docs which may not be supported by stable and lower branches, so should be restricted by respective version's upper-constraints.txt Change-Id: I599d4ea430cc1e65bb50d0481617b005febf6de2 (cherry picked from commit ee641dffc9b2ac835530efade91b1b72cee12e89)
-rw-r--r--tox.ini8
1 files changed, 6 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 14ba4f731..ca2f8043a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -90,7 +90,9 @@ commands = {posargs}
[testenv:docs]
basepython = python3
-deps = -r{toxinidir}/doc/requirements.txt
+deps =
+ -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/victoria}
+ -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -W -b html doc/source doc/build/html
[testenv:api-ref]
@@ -141,7 +143,9 @@ commands = bindep test
[testenv:releasenotes]
basepython = python3
-deps = -r{toxinidir}/doc/requirements.txt
+deps =
+ -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/victoria}
+ -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints]