Skip to content

Commit 4f0e5f7

Browse files
committed
run test and docs CI on 3.14
1 parent 1689034 commit 4f0e5f7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/docs.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
jobs:
1111
build-deploy-docs:
1212
runs-on: ubuntu-24.04
13+
matrix:
14+
python-version: ["3.12", "3.14"]
1315

1416
steps:
1517
- uses: actions/checkout@v3
@@ -20,14 +22,14 @@ jobs:
2022
fetch-depth: 0
2123
- uses: actions/setup-python@v5
2224
with:
23-
python-version: "3.12"
25+
python-version: ${{ matrix.python-version }}
2426

2527
- name: Install the latest version of uv
2628
uses: astral-sh/setup-uv@v7
2729
with:
2830
activate-environment: true
2931
version: "latest"
30-
python-version: ${{ matrix.python }}
32+
python-version: ${{ matrix.python-version }}
3133

3234
- name: Install python dependencies
3335
run: |

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
os: [ubuntu-24.04, windows-2022, macos-14]
28-
python-version: ["3.12"]
28+
python-version: ["3.12", "3.14"]
2929
env:
3030
OS: ${{ matrix.os }}
3131
PYTHON: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)