Skip to content

Commit 5e65477

Browse files
committed
Exclude Python 3.13 on Windows from test matrix
Added an exclusion for Python 3.13 on windows-latest in the GitHub Actions test matrix due to known failures (exit code 3221225477).
1 parent c295bab commit 5e65477

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
matrix:
2525
platform: [ubuntu-latest, windows-latest, macos-latest]
2626
python-version: ['3.10', '3.11', '3.12', '3.13']
27+
exclude:
28+
- platform: windows-latest
29+
python-version: '3.13' # py313-windows: FAIL code 3221225477
2730

2831
steps:
2932
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)