CI: Add Python 3.14 to the Python testing matrix (#2941)

* chore: update python version to 3.14 everywhere, add it to matrix for tests

* chore: fix doc generator

* chore: isort
This commit is contained in:
matt
2026-02-04 13:33:06 -05:00
committed by GitHub
parent 45c291c192
commit 47133770c0
10 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install Poetry
uses: snok/install-poetry@v1
@@ -62,7 +62,7 @@ jobs:
runs-on: ubicloud-standard-4
strategy:
matrix:
python-version: ${{ github.event_name == 'pull_request' && fromJSON('["3.13"]') || fromJSON('["3.10", "3.11", "3.12", "3.13"]') }}
python-version: ${{ github.event_name == 'pull_request' && fromJSON('["3.14"]') || fromJSON('["3.10", "3.11", "3.12", "3.13", "3.14"]') }}
optimistic-scheduling: ["true", "false"]
timeout-minutes: 20
steps: