Merge pull request #953 from acul71/fix/issue-952-windows-cdci-python-version

fix: use dynamic Python version in Windows CI/CD tests
This commit is contained in:
Manu Sheel Gupta
2025-09-24 19:43:06 +05:30
committed by GitHub
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

View File

@ -0,0 +1 @@
Fixed Windows CI/CD tests to use correct Python version instead of hardcoded Python 3.11. test 2