Skip to content

Commit 20aba89

Browse files
committed
chore: add support for python 3.12
1 parent 83be0fd commit 20aba89

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os:
1818
- ubuntu-latest
1919
python-version:
20-
- "3.11"
20+
- "3.12"
2121

2222
steps:
2323
- uses: actions/checkout@v4

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sphinx:
1212
build:
1313
os: ubuntu-22.04
1414
tools:
15-
python: "3.11"
15+
python: "3.12"
1616

1717
python:
1818
install:

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ RUN apt-get update && apt-get upgrade -qy
55
RUN apt-get install -qy \
66
git-core \
77
language-pack-en \
8-
python3.11 \
8+
python3.12 \
99
python3-pip \
10-
python3.11-dev \
10+
python3.12-dev \
1111
libssl-dev
1212
RUN pip3 install --upgrade pip setuptools
1313

README.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Prerequisites
1818

1919
Make sure you've installed:
2020

21-
- Python 3.10.x development environment
21+
- Python 3.12.x development environment
2222
(virtualenv strongly recommended)
2323
- `Heroku Command Line`_
2424

@@ -177,6 +177,11 @@ See the fragment files (if any) in the changelog.d directory.
177177

178178
.. scriv-insert-here
179179
180+
2025-02-13
181+
~~~~~~~~~~
182+
183+
- Add support for Python 3.12
184+
180185
2023-12-07
181186
~~~~~~~~~~
182187

runtime.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.11.11
1+
python-3.12.9

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def get_requirements(path):
4848
'Framework :: Flask',
4949
'Programming Language :: Python',
5050
'Programming Language :: Python :: 3.11',
51+
'Programming Language :: Python :: 3.12',
5152
),
5253
zip_safe=False,
5354
)

0 commit comments

Comments
 (0)