Skip to content

Commit bce66a6

Browse files
committed
CI: Use Python 3.14 across the board
1 parent 09c2a36 commit bce66a6

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Set up Python
4040
uses: actions/setup-python@v6
4141
with:
42-
python-version: 3.11
42+
python-version: '3.14'
4343
architecture: x64
4444
cache: 'pip'
4545
cache-dependency-path:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v6
2828
with:
29-
python-version: '3.12'
29+
python-version: '3.14'
3030
cache: 'pip'
3131
cache-dependency-path: 'pyproject.toml'
3232

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: ['ubuntu-22.04']
20-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
20+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2121
cratedb-version: ['nightly']
2222
sqla-version: ['latest']
2323
pip-allow-prerelease: ['false']
2424

2525
# Another CI test matrix slot to test against prerelease versions of Python packages.
2626
include:
2727
- os: 'ubuntu-latest'
28-
python-version: '3.13'
28+
python-version: '3.14'
2929
cratedb-version: 'nightly'
3030
sqla-version: 'latest'
3131
pip-allow-prerelease: 'true'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v6
1616
with:
17-
python-version: '3.12'
17+
python-version: '3.14'
1818
cache: 'pip'
1919
cache-dependency-path: 'pyproject.toml'
2020

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: ['ubuntu-22.04']
23-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
23+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2424
cratedb-version: ['5.5.1']
2525
sqla-version: ['<1.4', '<1.5', '<2.1']
2626
pip-allow-prerelease: ['false']
@@ -31,11 +31,13 @@ jobs:
3131
sqla-version: '<1.4'
3232
- python-version: '3.13'
3333
sqla-version: '<1.4'
34+
- python-version: '3.14'
35+
sqla-version: '<1.4'
3436

3537
# Another CI test matrix slot to test against prerelease versions of Python packages.
3638
include:
3739
- os: 'ubuntu-latest'
38-
python-version: '3.13'
40+
python-version: '3.14'
3941
cratedb-version: '5.5.1'
4042
sqla-version: 'latest'
4143
pip-allow-prerelease: 'true'

0 commit comments

Comments
 (0)