Skip to content

Commit

Permalink
Support Python 3.12 (#551)
Browse files Browse the repository at this point in the history
This change waits for `aiohttp`'s release as 3.9.0, which (will)
supports Python 3.12.

aio-libs/aiohttp#7639
  • Loading branch information
Yang-33 committed Nov 20, 2023
1 parent ab5f40c commit 41efcf9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/auto-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11']

python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4
with:
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ Test by using tox. We test against the following versions.
- 3.9
- 3.10
- 3.11
- 3.12

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

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ def run(self):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development"
]
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3.8, py3.9, py3.10, py3.11, py3-flake8-src, py3-flake8-other
envlist = py3.8, py3.9, py3.10, py3.11, py3.12, py3-flake8-src, py3-flake8-other

[testenv]
deps =
Expand Down

0 comments on commit 41efcf9

Please sign in to comment.