Skip to content

Commit 41c0d8e

Browse files
committed
CI: Use Python 3.14 across the board
1 parent fa846b1 commit 41c0d8e

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/release-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
"ubuntu-latest", # Intel
3636
# "windows-latest", # Intel
3737
]
38-
python-version: ["3.13"]
38+
python-version: ["3.14"]
3939
# TODO: Also build for Linux/ARM, because this platform gets more traction in datacenters.
4040
# - https://github.blog/changelog/2024-06-03-actions-arm-based-linux-and-windows-runners-are-now-in-public-beta/
4141
# - https://arm-software.github.io/AVH/main/infrastructure/html/avh_gh.html

.github/workflows/release-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
os: ["ubuntu-latest"]
33-
python-version: ["3.13"]
33+
python-version: ["3.14"]
3434
env:
3535
OS_TYPE: ${{ matrix.os }}
3636
PYTHON_VERSION: ${{ matrix.python-version }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
os: ['ubuntu-22.04']
2222
python-version: [
2323
'3.9',
24-
'3.13',
24+
'3.14',
2525
]
2626
cratedb-version: ['nightly']
2727

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ classifiers = [
4343
"Programming Language :: Python :: 3.11",
4444
"Programming Language :: Python :: 3.12",
4545
"Programming Language :: Python :: 3.13",
46+
"Programming Language :: Python :: 3.14",
4647
"Topic :: Communications",
4748
"Topic :: Database",
4849
"Topic :: Documentation",

release/oci/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build wheel package
2-
FROM python:3.13-slim-bookworm AS build
2+
FROM python:3.14-slim-trixie AS build
33

44
ARG BUILD=/usr/src
55

@@ -21,7 +21,7 @@ COPY . ${BUILD}
2121
RUN python -m build --wheel ${BUILD}
2222

2323

24-
FROM python:3.13-slim-bookworm AS package
24+
FROM python:3.14-slim-trixie AS package
2525

2626
ARG BUILD=/usr/src
2727

0 commit comments

Comments
 (0)