Skip to content

Commit 1fea2ba

Browse files
Included Python 3.12 support (#917)
1 parent 2425dec commit 1fea2ba

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
os: [ ubuntu-latest ]
37-
python-version: ['3.9', '3.10', '3.11']
37+
python-version: ['3.9', '3.10', '3.11', '3.12']
3838
pydantic-version: [ '1.10.15', '2.7.1' ]
3939
include: # Run windows tests on only one python version
4040
- os: windows-latest

.github/workflows/test_all_notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false # Continue to run other builds despite a failure
2121
matrix:
2222
os: [ ubuntu-latest ]
23-
python-version: [ '3.9', '3.10', '3.11' ]
23+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
2424
include: # Run windows tests on only one python version
2525
- os: windows-latest
2626
python-version: '3.10' # torch 1.x not available on Windows for Python 3.11

.github/workflows/test_changed_notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ ubuntu-latest ]
30-
python-version: [ '3.9', '3.10', '3.11' ]
30+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
3131
include: # Run windows tests on only one python version
3232
- os: windows-latest
3333
python-version: '3.10' # torch 1.x not available on Windows for Python 3.11

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def readme():
7979
"Programming Language :: Python :: 3.9",
8080
"Programming Language :: Python :: 3.10",
8181
"Programming Language :: Python :: 3.11",
82+
"Programming Language :: Python :: 3.12",
8283
"License :: Other/Proprietary License",
8384
"Topic :: Scientific/Engineering",
8485
],

0 commit comments

Comments
 (0)