From 634de8ed02ad2eaea300355bff39af641cb75b58 Mon Sep 17 00:00:00 2001 From: acul71 Date: Tue, 23 Sep 2025 16:10:35 -0400 Subject: [PATCH 1/2] 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. --- .github/workflows/tox.yml | 2 +- newsfragments/952.bugfix.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 newsfragments/952.bugfix.rst 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..9a0c715b --- /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. From 262e7e9834fe329401f403e60b01186657982248 Mon Sep 17 00:00:00 2001 From: acul71 Date: Tue, 23 Sep 2025 17:17:27 -0400 Subject: [PATCH 2/2] fix: add newline to newsfragment file Pre-commit hook fixed end-of-file formatting --- newsfragments/952.bugfix.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newsfragments/952.bugfix.rst b/newsfragments/952.bugfix.rst index 9a0c715b..3dcd6407 100644 --- a/newsfragments/952.bugfix.rst +++ b/newsfragments/952.bugfix.rst @@ -1 +1 @@ -Fixed Windows CI/CD tests to use correct Python version instead of hardcoded Python 3.11. +Fixed Windows CI/CD tests to use correct Python version instead of hardcoded Python 3.11. test 2