Skip to content

Commit b7cf7d0

Browse files
committed
build: skip windows 3.14 for now
3.14.0b1 is confused about -t vs non-t: python/cpython#133779
1 parent 7407d11 commit b7cf7d0

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/coverage.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ jobs:
101101
python-version: "pypy-3.9"
102102
- os: windows
103103
python-version: "pypy-3.10"
104+
# Windows 3.14.0b1 seems confused somehow about t vs not-t:
105+
# https://github.com/python/cpython/issues/133779
106+
- os: windows
107+
python-version: "3.14"
108+
- os: windows
109+
python-version: "3.14t"
104110
# If we need to tweak the os version we can do it with an include like
105111
# this:
106112
# include:

.github/workflows/testsuite.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,13 @@ jobs:
8989
- "pypy-3.9"
9090
- "pypy-3.10"
9191
- "pypy-3.11"
92+
exclude:
93+
# Windows 3.14.0b1 seems confused somehow about t vs not-t:
94+
# https://github.com/python/cpython/issues/133779
95+
- os: windows
96+
python-version: "3.14"
97+
- os: windows
98+
python-version: "3.14t"
9299
#
93100
# If we need to exclude any combinations, do it like this:
94101
# exclude:

0 commit comments

Comments
 (0)