Skip to content

Commit

Permalink
Add py312 support (#101)
Browse files Browse the repository at this point in the history
* Add py312 support

* fixup
  • Loading branch information
jsfehler authored Apr 12, 2024
1 parent c6b20d2 commit 40c4a79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
python-version: '3.10'
- PY_VER: py311
python-version: '3.11'
- PY_VER: py312
python-version: '3.12'

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def get_version_data() -> dict:
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
{py38,py39,py310,py311},
{py38,py39,py310,py311, py312},
lint

[testenv:{py38, py39, py310, py311}]
[testenv:{py38, py39, py310, py311, py312}]
usedevelop=True
deps = -rrequirements/tests.txt
commands = pytest -vv {posargs} --cov=inori --cov-append tests
Expand Down

0 comments on commit 40c4a79

Please sign in to comment.