Skip to content

Commit 2ef5d49

Browse files
committed
test against python 3.13, 3.14
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 49479ba commit 2ef5d49

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
38+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12","3.13","3.14"]
3939

4040
steps:
4141
- uses: actions/checkout@v4

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sphinx:
66
build:
77
os: ubuntu-22.04
88
tools:
9-
python: '3.12'
9+
python: '3.14'
1010

1111
python:
1212
install:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG PYTHON_VERSION=3.12
3+
ARG PYTHON_VERSION=3.14
44
FROM python:${PYTHON_VERSION}
55

66
WORKDIR /src

Dockerfile-docs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG PYTHON_VERSION=3.12
3+
ARG PYTHON_VERSION=3.14
44

55
FROM python:${PYTHON_VERSION}
66

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ classifiers = [
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2830
"Topic :: Software Development",
2931
"Topic :: Utilities",
3032
]

tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG PYTHON_VERSION=3.12
3+
ARG PYTHON_VERSION=3.14
44
FROM python:${PYTHON_VERSION}
55

66
RUN apt-get update && apt-get -y install --no-install-recommends \

tests/Dockerfile-dind-certs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG PYTHON_VERSION=3.12
3+
ARG PYTHON_VERSION=3.14
44

55
FROM python:${PYTHON_VERSION}
66
RUN mkdir /tmp/certs

0 commit comments

Comments
 (0)