From 65acff4cefd354a11110ba028786b25f5f379229 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 14 Oct 2025 22:19:33 +0200 Subject: [PATCH] test against python 3.13, 3.14 Signed-off-by: Sebastiaan van Stijn --- .github/workflows/ci.yml | 2 +- .readthedocs.yml | 2 +- Dockerfile | 2 +- Dockerfile-docs | 2 +- pyproject.toml | 2 ++ tests/Dockerfile | 2 +- tests/Dockerfile-dind-certs | 2 +- 7 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b43a27bc8..e0111dab49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12","3.13","3.14"] steps: - uses: actions/checkout@v4 diff --git a/.readthedocs.yml b/.readthedocs.yml index 907454ea92..aabbbce338 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,7 +6,7 @@ sphinx: build: os: ubuntu-22.04 tools: - python: '3.12' + python: '3.14' python: install: diff --git a/Dockerfile b/Dockerfile index e77e713738..0ea90f65a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG PYTHON_VERSION=3.12 +ARG PYTHON_VERSION=3.14 FROM python:${PYTHON_VERSION} WORKDIR /src diff --git a/Dockerfile-docs b/Dockerfile-docs index 4671d2c492..383d836298 100644 --- a/Dockerfile-docs +++ b/Dockerfile-docs @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG PYTHON_VERSION=3.12 +ARG PYTHON_VERSION=3.14 FROM python:${PYTHON_VERSION} diff --git a/pyproject.toml b/pyproject.toml index 525a9b81a8..0353d94575 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Software Development", "Topic :: Utilities", ] diff --git a/tests/Dockerfile b/tests/Dockerfile index 1d967e563b..af441bffee 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG PYTHON_VERSION=3.12 +ARG PYTHON_VERSION=3.14 FROM python:${PYTHON_VERSION} RUN apt-get update && apt-get -y install --no-install-recommends \ diff --git a/tests/Dockerfile-dind-certs b/tests/Dockerfile-dind-certs index 9d5c58fb2d..ad9501ec56 100644 --- a/tests/Dockerfile-dind-certs +++ b/tests/Dockerfile-dind-certs @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG PYTHON_VERSION=3.12 +ARG PYTHON_VERSION=3.14 FROM python:${PYTHON_VERSION} RUN mkdir /tmp/certs