Skip to content

Commit 0da9d55

Browse files
committed
don't PGO optimize windows 3.13 for now
1 parent bfa816c commit 0da9d55

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,9 +448,14 @@ jobs:
448448
# x86_64 pypy builds are not PGO optimized
449449
# i686 not supported by pypy
450450
# aarch64 only 3.11 and up, also not PGO optimized
451+
#
452+
# FIXME https://github.com/PyO3/maturin-action/issues/275
453+
# cffi prevents `maturin-action` working on Windows 3.13 for now for the optimized build
454+
- os: windows
455+
interpreter: '3.13'
451456
- os: windows
452457
target: x86_64
453-
interpreter: pypy3.9 pypy3.10
458+
interpreter: pypy3.9 pypy3.10 3.13
454459
- os: windows
455460
target: i686
456461
python-architecture: x86
@@ -522,6 +527,10 @@ jobs:
522527
interpreter: '3.8'
523528
- os: macos
524529
interpreter: '3.9'
530+
# https://github.com/PyO3/maturin-action/issues/275
531+
# cffi prevents `maturin-action` working on Windows 3.13 for now
532+
- os: windows
533+
interpreter: '3.13'
525534

526535
runs-on: ${{ matrix.runs-on }}
527536
steps:

0 commit comments

Comments
 (0)