fix: use dynamic Python version in Windows CI/CD tests

Fix hardcoded py311- to use dynamic matrix.python-version variable.
Ensures Windows tests run with correct Python version and resolves
async behavior differences causing test failures.
This commit is contained in:
acul71
2025-09-23 16:10:35 -04:00
parent 066c87515e
commit 634de8ed02
2 changed files with 2 additions and 1 deletions

View File

@ -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