Skip to content

Commit 526b64c

Browse files
committed
🔍 ci: exclude Python 3.12 on Ubuntu from test matrix to prevent hangs
1 parent ae13b04 commit 526b64c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@ on:
1919

2020
jobs:
2121
test:
22-
if: ${{ !(matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12') }}
2322
runs-on: ${{ matrix.os }}
2423
strategy:
2524
fail-fast: false
2625
matrix:
2726
os: ['windows-latest', 'macOS-latest', 'ubuntu-latest']
2827
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
28+
exclude:
29+
- os: ubuntu-latest
30+
python-version: '3.12'
2931
defaults:
3032
run:
3133
shell: bash

0 commit comments

Comments
 (0)