Skip to content

Commit

Permalink
Add Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
nblock committed Apr 26, 2024
1 parent 0775124 commit cf2ec15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tox.yml
Expand Up @@ -19,7 +19,9 @@ jobs:
- version: "3.10"
toxenv: py310
- version: "3.11"
toxenv: py311,docs,check-style
toxenv: py311
- version: "3.12"
toxenv: py312,docs,check-style

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -42,6 +42,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
],
)
6 changes: 3 additions & 3 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,py310,py311
envlist = py38,py39,py310,py311,py312

[testenv]
description = Run tests
Expand All @@ -9,7 +9,7 @@ commands =

[testenv:fix-style]
description = Fix coding style
basepython = python3.11
basepython = python3.12
skip_install = true
deps =
black
Expand All @@ -26,7 +26,7 @@ commands =

[testenv:check-style]
description = Check coding style
basepython = python3.11
basepython = python3.12
skip_install = true
deps =
black
Expand Down

0 comments on commit cf2ec15

Please sign in to comment.