Skip to content

Commit 37d62dd

Browse files
authored
skip shipping windows 3.14 wheels for now (#200)
1 parent 6e61983 commit 37d62dd

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
target: x86_64
291291
- os: macos
292292
target: aarch64
293-
interpreter: '3.9'
293+
interpreter: "3.9"
294294

295295
# windows;
296296
# aarch64 only 3.11 and up, also not PGO optimized
@@ -346,7 +346,8 @@ jobs:
346346
fail-fast: false
347347
matrix:
348348
os: [linux, windows, macos]
349-
interpreter: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
349+
interpreter:
350+
["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
350351
include:
351352
# standard runners with override for macos arm
352353
- os: linux
@@ -360,6 +361,12 @@ jobs:
360361
# macos arm only supported from 3.10 and up
361362
- os: macos
362363
interpreter: "3.9"
364+
# windows 3.14 cffi install blocks build on 3.14 beta 1
365+
# https://github.com/python/cpython/issues/133779
366+
- os: windows
367+
interpreter: "3.14"
368+
- os: windows
369+
interpreter: "3.14t"
363370

364371
runs-on: ${{ matrix.runs-on }}
365372
steps:

0 commit comments

Comments
 (0)