From 77e5747a2351b77c1a265ab66bb53c8dbda14ba4 Mon Sep 17 00:00:00 2001 From: Ariel Rin Date: Wed, 1 Nov 2023 13:15:18 +1000 Subject: [PATCH] move tox tests to new dependency format --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index ccb213e7..7ea2153f 100644 --- a/tox.ini +++ b/tox.ini @@ -25,9 +25,7 @@ commands = [testenv:docs] description = invoke sphinx-build to build the HTML docs -basepython = python3.9 -skip_install = True -deps = -r{toxinidir}/docs/requirements.txt -install_command = python -I -m pip install {opts} {packages} +basepython = python3.11 +install_command = pip install -e ".[docs]" -U {opts} {packages} commands = sphinx-build -T -E -b html -d "{toxworkdir}/docs_doctree" -D language=en docs "{toxworkdir}/docs_out" {posargs}