Skip to content

Commit 18e693f

Browse files
authored
Add Python 3.13 support (#206)
Python 3.13 was already released and is now available in Ubuntu Noble.
1 parent 9261ad3 commit 18e693f

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/workflows/pifpaf.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- py310
2020
- py311
2121
- py312
22+
- py313
2223
- pep8
2324
- build
2425
steps:

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ RUN apt-get -qq update -y \
1515
python3 python3-dev python3-pip python3-virtualenv \
1616
python3.10 python3.10-dev python3.10-distutils \
1717
python3.11 python3.11-dev \
18+
python3.13 python3.13-dev \
1819
gcc liberasurecode-dev liberasurecode1 postgresql libpq-dev python3-rados git wget memcached \
1920
&& rm -rf /var/lib/apt/lists/*
2021

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifier =
1616
Programming Language :: Python :: 3.10
1717
Programming Language :: Python :: 3.11
1818
Programming Language :: Python :: 3.12
19+
Programming Language :: Python :: 3.13
1920
Topic :: Software Development :: Testing
2021

2122
[options]
@@ -39,6 +40,7 @@ test =
3940
stestr
4041
testtools
4142
mock
43+
legacy-cgi; python_version>='3.13'
4244
gnocchi =
4345
uwsgi
4446

0 commit comments

Comments
 (0)