Skip to content

Commit b5d5d11

Browse files
committed
Add python 3.12 support
1 parent 305dce3 commit b5d5d11

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
17+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ ensure_newline_before_comments = true
1515

1616
[tool.black]
1717
line-length = 79
18-
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
18+
target-version = ['py37', 'py38', 'py39', 'py310', 'py311', 'py312']

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"Programming Language :: Python :: 3.9",
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2324
"Development Status :: 3 - Alpha",
2425
],
2526
license="Apache License, Version 2.0",

0 commit comments

Comments
 (0)