Skip to content

Commit be4f490

Browse files
committed
Add support for Python 3.12
1 parent 6be2f61 commit be4f490

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", pypy-3.7]
16+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.7]
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python ${{ matrix.python-version }}

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def run_tests(self):
6464
'Programming Language :: Python :: 3.9',
6565
'Programming Language :: Python :: 3.10',
6666
'Programming Language :: Python :: 3.11',
67+
'Programming Language :: Python :: 3.12',
6768
'Programming Language :: Python :: 3 :: Only',
6869
'Topic :: Software Development :: Libraries :: Python Modules',
6970
'Topic :: Software Development :: Quality Assurance',

tox.ini

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ envlist =
55
py39-flake8-{v5,v6,latest},
66
py310-flake8-{v5,v6,latest},
77
py311-flake8-{v5,v6,latest},
8-
py311-flake8,
8+
py312-flake8-{v5,v6,latest},
9+
py312-flake8,
910
pypy3
1011

1112
[gh-actions]
@@ -14,7 +15,8 @@ python =
1415
3.8: py38
1516
3.9: py39
1617
3.10: py310
17-
3.11: py311, py311-flake8
18+
3.11: py311
19+
3.12: py312, py312-flake8
1820
pypy-3.7: pypy3
1921

2022
[testenv]

0 commit comments

Comments
 (0)