Skip to content

Commit

Permalink
Add Python 3.12 for tox (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
bieniu authored Oct 24, 2023
1 parent c1e1848 commit 60a4654
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
VERSION = "3.1.0"
VERSION = "3.2.0"

with open("requirements.txt", encoding="utf-8") as file:
requirements = file.read().splitlines()
Expand All @@ -32,6 +32,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
],
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py310, py311, lint, typing, coverage
envlist = py310, py311, py312, lint, typing, coverage
skip_missing_interpreters = True

[gh-actions]
python =
3.10: py310, lint, typing, coverage
3.11: py311
3.12: py312

[testenv]
commands =
Expand Down

0 comments on commit 60a4654

Please sign in to comment.