Skip to content

Commit a53f158

Browse files
Update Python version support in pyproject.toml and release.Dockerfile
- Added support for Python versions 3.13 and 3.14 in both pyproject.toml and release.Dockerfile. - This change ensures compatibility with the latest Python releases and enhances the project's flexibility for future development.
1 parent 169eabe commit a53f158

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ classifiers = [
1111
"Programming Language :: Python :: 3.10",
1212
"Programming Language :: Python :: 3.11",
1313
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: 3.13",
15+
"Programming Language :: Python :: 3.14",
1416
"License :: OSI Approved :: MIT License"
1517

1618
]

release.Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@ RUN add-apt-repository ppa:deadsnakes/ppa -y && \
2424
python3.10 \
2525
python3.11 \
2626
python3.12 \
27+
python3.13 \
28+
python3.14 \
2729
python3.12-venv \
2830
python3.11-venv \
31+
python3.13-venv \
32+
python3.14-venv \
2933
python3-pip \
3034
pkg-config \
3135
libssl-dev \

0 commit comments

Comments
 (0)