Skip to content

Commit 7483613

Browse files
authored
Pin Python 3.13 and Python 3.14 to patch versions to resolve stubtest stdlib failures on main (#15631)
1 parent 5632132 commit 7483613

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/daily.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
38-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
38+
# TODO: unpin the patch versions of Python 3.13/3.14 once stubtest failures are fixed
39+
python-version: ["3.10", "3.11", "3.12", "3.13.12", "3.14.3"]
3940
fail-fast: false
4041

4142
steps:

.github/workflows/stubtest_stdlib.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
34-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
34+
# TODO: unpin the patch versions of Python 3.13/3.14 once stubtest failures are fixed
35+
python-version: ["3.10", "3.11", "3.12", "3.13.12", "3.14.3"]
3536
fail-fast: false
3637

3738
steps:

0 commit comments

Comments
 (0)