Skip to content

Commit 5488f70

Browse files
committed
Fix default python version used in int. tests
Signed-off-by: Fabrice Normandin <[email protected]>
1 parent 904a062 commit 5488f70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_template.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636
]
3737

38-
_DEFAULT_PYTHON_VERSION = "3.10"
38+
_DEFAULT_PYTHON_VERSION = "3.11"
3939
"""The default choice of python version in the copier.yaml file."""
4040

4141
_project_fixture_scope = "module"
@@ -215,8 +215,8 @@ def project_from_template(
215215
# TODO: This seems to be the only one that works in the CI atm, because:
216216
# - UV seems unable to download other python versions?
217217
# - Python 3.11 and 3.12 aren't able to install orion atm.
218-
"3.10",
219-
pytest.param("3.11", marks=pytest.mark.slow),
218+
# "3.10",
219+
"3.11",
220220
pytest.param("3.12", marks=pytest.mark.slow),
221221
pytest.param(
222222
"3.13",

0 commit comments

Comments
 (0)