Skip to content

Commit c98d721

Browse files
authored
Build Python 3.12 wheels (#65)
1 parent acf473a commit c98d721

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/nox-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
40+
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
4141

4242
name: Test Python ${{ matrix.python-version }}
4343
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import nox
66

77

8-
@nox.session(py=['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'])
8+
@nox.session(py=['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'])
99
def unit(session):
1010
session.install('pytest', 'pytest-cov')
1111
session.install('.')

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def finalize_options(self):
4444
'Programming Language :: Python :: 3.9',
4545
'Programming Language :: Python :: 3.10',
4646
'Programming Language :: Python :: 3.11',
47+
'Programming Language :: Python :: 3.12',
4748
],
4849
package_dir={'': 'src'},
4950
packages=find_packages(where='src'),

0 commit comments

Comments
 (0)