Skip to content

Commit 41efcf9

Browse files
authored
Support Python 3.12 (#551)
This change waits for `aiohttp`'s release as 3.9.0, which (will) supports Python 3.12. aio-libs/aiohttp#7639
1 parent ab5f40c commit 41efcf9

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/auto-testing.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [ '3.8', '3.9', '3.10', '3.11']
18-
17+
python-version:
18+
- '3.8'
19+
- '3.9'
20+
- '3.10'
21+
- '3.11'
22+
- '3.12'
1923
steps:
2024
- uses: actions/checkout@v4
2125
with:

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ Test by using tox. We test against the following versions.
378378
- 3.9
379379
- 3.10
380380
- 3.11
381+
- 3.12
381382

382383
To run all tests and to run ``flake8`` against all versions, use:
383384

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ def run(self):
204204
"Programming Language :: Python :: 3.9",
205205
"Programming Language :: Python :: 3.10",
206206
"Programming Language :: Python :: 3.11",
207+
"Programming Language :: Python :: 3.12",
207208
"Topic :: Software Development"
208209
]
209210
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3.8, py3.9, py3.10, py3.11, py3-flake8-src, py3-flake8-other
2+
envlist = py3.8, py3.9, py3.10, py3.11, py3.12, py3-flake8-src, py3-flake8-other
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)