Skip to content

Commit d7fc1fd

Browse files
committed
Add support for Python 3.12
1 parent 32d12aa commit d7fc1fd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: .github/workflows/pythonpackage.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -25,6 +25,7 @@ jobs:
2525
uses: actions/setup-python@v4
2626
with:
2727
python-version: ${{ matrix.python-version }}
28+
allow-prereleases: true
2829
- name: Install dependencies
2930
run: |
3031
python -m pip install --upgrade pip

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"Programming Language :: Python :: 3.9",
4141
"Programming Language :: Python :: 3.10",
4242
"Programming Language :: Python :: 3.11",
43+
"Programming Language :: Python :: 3.12",
4344
"Programming Language :: Python :: 3 :: Only",
4445
]
4546
)

0 commit comments

Comments
 (0)