mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
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:
2
.github/workflows/tox.yml
vendored
2
.github/workflows/tox.yml
vendored
@ -103,5 +103,5 @@ jobs:
|
|||||||
if [[ "${{ matrix.toxenv }}" == "wheel" ]]; then
|
if [[ "${{ matrix.toxenv }}" == "wheel" ]]; then
|
||||||
python -m tox run -e windows-wheel
|
python -m tox run -e windows-wheel
|
||||||
else
|
else
|
||||||
python -m tox run -e py311-${{ matrix.toxenv }}
|
python -m tox run -e py${{ matrix.python-version }}-${{ matrix.toxenv }}
|
||||||
fi
|
fi
|
||||||
|
|||||||
1
newsfragments/952.bugfix.rst
Normal file
1
newsfragments/952.bugfix.rst
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fixed Windows CI/CD tests to use correct Python version instead of hardcoded Python 3.11.
|
||||||
Reference in New Issue
Block a user