diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index e50f0bf..926bf02 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c261b0c..ae9d6e4 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3874f82..88f4469 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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 }}