Skip to content

Commit 1b1d0fa

Browse files
committed
Add support and testing for Python 3.12
1 parent 3631b92 commit 1b1d0fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
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.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='modularitypruning',
12-
version='1.3.4',
12+
version='1.3.5',
1313
package_dir={'modularitypruning': 'utilities'},
1414
packages=['modularitypruning'],
1515
url='https://github.com/ragibson/ModularityPruning',
@@ -28,6 +28,7 @@
2828
'Programming Language :: Python :: 3.9',
2929
'Programming Language :: Python :: 3.10',
3030
'Programming Language :: Python :: 3.11',
31+
'Programming Language :: Python :: 3.12',
3132
'Programming Language :: Python :: 3 :: Only',
3233
'License :: OSI Approved :: MIT License'
3334
],

0 commit comments

Comments
 (0)