diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 0658d2b3..56d6a0bc 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -103,5 +103,5 @@ jobs: if [[ "${{ matrix.toxenv }}" == "wheel" ]]; then python -m tox run -e windows-wheel else - python -m tox run -e py311-${{ matrix.toxenv }} + python -m tox run -e py${{ matrix.python-version }}-${{ matrix.toxenv }} fi diff --git a/newsfragments/952.bugfix.rst b/newsfragments/952.bugfix.rst new file mode 100644 index 00000000..3dcd6407 --- /dev/null +++ b/newsfragments/952.bugfix.rst @@ -0,0 +1 @@ +Fixed Windows CI/CD tests to use correct Python version instead of hardcoded Python 3.11. test 2