Skip to content

Commit f2f2e79

Browse files
committed
tox: Bump minimum version to 4.x
'isolated_build' is no longer required since builds are isolated by default in tox 4. 'basepython' is no longer required since tox 4 only supports Python 3 and 'basepython' defaults to the version of Python that tox is installed with. Signed-off-by: Stephen Finucane <[email protected]>
1 parent eab5453 commit f2f2e79

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
2-
minversion = 2.4.0
2+
minversion = 4.2.0
33
envlist = py{39,310,311,312}
4-
isolated_build = True
54

65
[testenv]
76
usedevelop = True
@@ -27,7 +26,6 @@ commands=
2726
python -X dev -X warn_default_encoding -m pytest --durations 25 {posargs}
2827

2928
[testenv:docs]
30-
basepython = python3
3129
description =
3230
Build documentation.
3331
extras =
@@ -36,7 +34,6 @@ commands =
3634
sphinx-build -M html ./doc ./build/sphinx -W --keep-going
3735

3836
[testenv:docs-live]
39-
basepython = python3
4037
description =
4138
Build documentation.
4239
extras =

0 commit comments

Comments
 (0)