Only run CI on <py3.14

ns_aware
Gud Boi 2026-02-24 21:05:16 -05:00
parent aee86f2544
commit 2631fb4ff3
1 changed files with 10 additions and 3 deletions

View File

@ -83,7 +83,10 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
python-version: ['3.13'] python-version: [
'3.13',
# '3.14',
]
spawn_backend: [ spawn_backend: [
'trio', 'trio',
# 'mp_spawn', # 'mp_spawn',
@ -91,8 +94,8 @@ jobs:
] ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: 'Install uv + py-${{ matrix.python-version }}' - name: 'Install uv + py-${{ matrix.python-version }}'
uses: astral-sh/setup-uv@v6 uses: astral-sh/setup-uv@v6
with: with:
@ -128,13 +131,17 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [macos-latest] os: [macos-latest]
python: ['3.13'] python-version: [
'3.13',
# '3.14',
]
spawn_backend: [ spawn_backend: [
'trio', 'trio',
] ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: 'Install uv + py-${{ matrix.python-version }}' - name: 'Install uv + py-${{ matrix.python-version }}'
uses: astral-sh/setup-uv@v6 uses: astral-sh/setup-uv@v6
with: with: