Skip to content

Commit 1e0c99e

Browse files
committed
update CI to run on 3.14
1 parent c766078 commit 1e0c99e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ jobs:
2222
strategy:
2323
matrix:
2424
# run static analysis on bleeding and trailing edges
25-
python-version: [ '3.9', '3.13' ]
25+
python-version: [ '3.9', '3.14' ]
2626

2727
steps:
2828
- uses: actions/checkout@v5
2929
- name: Set up Python ${{ matrix.python-version }}
3030
uses: actions/setup-python@v6
3131
with:
3232
python-version: ${{ matrix.python-version }}
33+
allow-prereleases: true
3334
- name: Install uv
3435
uses: astral-sh/setup-uv@v7
3536
with:

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
actions: write
2828
strategy:
2929
matrix:
30-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.3']
30+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3131
env:
3232
COVERAGE_FILE: linux-py${{ matrix.python-version }}.coverage
3333

@@ -42,6 +42,7 @@ jobs:
4242
uses: actions/setup-python@v6
4343
with:
4444
python-version: ${{ matrix.python-version }}
45+
allow-prereleases: true
4546
- name: Install Just
4647
uses: extractions/setup-just@v3
4748
- name: Install uv
@@ -82,7 +83,7 @@ jobs:
8283
actions: write
8384
strategy:
8485
matrix:
85-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.3']
86+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
8687
env:
8788
COVERAGE_FILE: macos-py${{ matrix.python-version }}.coverage
8889

@@ -97,6 +98,7 @@ jobs:
9798
uses: actions/setup-python@v6
9899
with:
99100
python-version: ${{ matrix.python-version }}
101+
allow-prereleases: true
100102
- name: Install Just
101103
uses: extractions/setup-just@v3
102104
- name: Install uv
@@ -137,7 +139,7 @@ jobs:
137139
actions: write
138140
strategy:
139141
matrix:
140-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.3']
142+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
141143
env:
142144
COVERAGE_FILE: windows-py${{ matrix.python-version }}.coverage
143145

@@ -151,6 +153,7 @@ jobs:
151153
uses: actions/setup-python@v6
152154
with:
153155
python-version: ${{ matrix.python-version }}
156+
allow-prereleases: true
154157
- name: Install Just
155158
uses: extractions/setup-just@v3
156159
- name: Install uv

0 commit comments

Comments
 (0)