Skip to content

Commit

Permalink
ci: modify tox to python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Sep 21, 2023
1 parent cad0155 commit 64e2189
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ include-package-data = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{39}
envlist = py{310}
[testenv]
description: run unit tests
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def setup(c: Context, python_path: str | None = None):

if python_path is None:
# get path to python executable
python_path = get_python_path(preferred_version="3.9")
python_path = get_python_path(preferred_version="3.10")
if not python_path:
print(f"{msg_type.FAIL} Python executable not found")
exit(1)
Expand Down

0 comments on commit 64e2189

Please sign in to comment.