Skip to content

Commit

Permalink
chore: change 3.13 to experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
Secbone committed Nov 3, 2024
1 parent 0129e63 commit f32bcd0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ jobs:
test:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12']
experimental: [false]
include:
- python-version: '3.13'
experimental: true
fail-fast: false
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ jobs:
test:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12']
macos-version: ['macos-12']
experimental: [false]
include:
- macos-version: 'macos-latest'
experimental: true
- python-version: '3.13'
experimental: true
fail-fast: false
runs-on: ${{ matrix.macos-version }}
continue-on-error: ${{ matrix.experimental }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ jobs:
test:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12']
experimental: [false]
include:
- python-version: '3.13'
experimental: true
fail-fast: false
runs-on: windows-latest
continue-on-error: ${{ matrix.experimental }}
Expand Down

0 comments on commit f32bcd0

Please sign in to comment.