Skip to content

Commit

Permalink
Add Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ymyzk committed Jul 21, 2024
1 parent 029bdf0 commit a3fdf08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Quickstart

Requirements
------------
* CPython 3.8/3.9/3.10/3.11
* CPython 3.8/3.9/3.10/3.11/3.12
* WSGI application

Installation
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development",
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[tox]
envlist = py38,py39,py310,py311,mypy,pre-commit
envlist = py38,py39,py310,py311,py312,mypy,pre-commit
isolated_build = true

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311, mypy, pre-commit
3.11: py311
3.12: py312, mypy, pre-commit

[testenv]
deps = .[test]
Expand Down

0 comments on commit a3fdf08

Please sign in to comment.