Skip to content

Commit

Permalink
Add support for Python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Sep 20, 2024
1 parent 5ace852 commit abd47f8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'

steps:
- name: Check out code
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ classifiers =
Programming Language :: Python :: 3.8
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)

[options]
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py38, py39, py310, flake8, pylint
envlist = py38, py39, py310, py311, py312, flake8, pylint
skip_missing_interpreters = true
minversion = 3.0
isolated_build = true
Expand Down Expand Up @@ -34,3 +34,5 @@ python =
3.8: py38, flake8, pylint
3.9: py39, flake8, pylint
3.10: py310, flake8, pylint
3.11: py311, flake8, pylint
3.11: py312, flake8, pylint

0 comments on commit abd47f8

Please sign in to comment.