Skip to content

Commit 4c17b59

Browse files
committed
chore: add support for Python 3.12
1 parent 27c7cf6 commit 4c17b59

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12.0-beta.4"]
18+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1919
os: [ubuntu-latest]
2020
include:
2121
- python-version: 3.6
@@ -25,11 +25,12 @@ jobs:
2525

2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v4
2929
- name: Set up Python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.python-version }}
33+
allow-prereleases: true
3334
- uses: actions/cache@v2
3435
with:
3536
path: ~/.cache/pip

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers =
2323
Programming Language :: Python :: 3.9
2424
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: 3.11
26+
Programming Language :: Python :: 3.12
2627

2728
[options]
2829
packages = find:

0 commit comments

Comments
 (0)