Skip to content

Commit 13a18c1

Browse files
committed
Move basepython completely out. This should make this work with tox-uv.
1 parent 979240d commit 13a18c1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ envlist =
2020
ignore_basepython_conflict = true
2121

2222
[testenv]
23-
basepython =
24-
{bootstrap,clean,check,report,docs,codecov}: {env:TOXPYTHON:python3}
2523
setenv =
2624
PYTHONPATH={toxinidir}/tests
2725
PYTHONUNBUFFERED=yes
@@ -80,6 +78,7 @@ commands =
8078
{posargs:python setup.py clean --all build_ext --force}
8179

8280
[testenv:docs]
81+
basepython = {env:TOXPYTHON:python3.13}
8382
usedevelop = true
8483
deps =
8584
-r{toxinidir}/docs/requirements.txt
@@ -88,6 +87,7 @@ commands =
8887
sphinx-build -b linkcheck docs dist/docs
8988

9089
[testenv:report]
90+
basepython = {env:TOXPYTHON:python3.13}
9191
deps =
9292
coverage
9393
cython
@@ -99,6 +99,7 @@ commands =
9999
coverage html
100100

101101
[testenv:clean]
102+
basepython = {env:TOXPYTHON:python3.13}
102103
commands =
103104
python setup.py clean
104105
coverage erase

0 commit comments

Comments
 (0)