Skip to content

Commit 304457c

Browse files
committed
Support and testing for Python 3.12
1 parent 0986139 commit 304457c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.9, "3.10", 3.11]
11+
python-version: [3.9, 3.12]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
'Programming Language :: Python :: 3.9',
3030
'Programming Language :: Python :: 3.10',
3131
'Programming Language :: Python :: 3.11',
32+
'Programming Language :: Python :: 3.12',
3233
'Programming Language :: Python :: Implementation',
3334
'Programming Language :: Python :: Implementation :: CPython',
3435
'Programming Language :: Python :: 3 :: Only',

0 commit comments

Comments
 (0)