Skip to content

Commit

Permalink
Add support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise committed Oct 21, 2023
1 parent 6be2f61 commit 236fab9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", pypy-3.7]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.7]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def run_tests(self):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ envlist =
py39-flake8-{v5,v6,latest},
py310-flake8-{v5,v6,latest},
py311-flake8-{v5,v6,latest},
py311-flake8,
py312-flake8-{v5,v6,latest},
py312-flake8,
pypy3

[gh-actions]
Expand All @@ -14,7 +15,8 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311, py311-flake8
3.11: py311
3.12: py312, py312-flake8
pypy-3.7: pypy3

[testenv]
Expand Down

0 comments on commit 236fab9

Please sign in to comment.