Skip to content

Commit c8cae1e

Browse files
fix: torch doesn't support 3.13
1 parent d99c061 commit c8cae1e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.11", "3.12", "3.13"]
14+
python-version: ["3.11", "3.12"]
1515
os: [ubuntu-latest]
1616
runs-on: ${{ matrix.os }}
1717
env:

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ classifiers=[
2222
"Operating System :: OS Independent",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25-
"Programming Language :: Python :: 3.13",
2625
"Programming Language :: Python :: Implementation :: CPython",
2726
"Topic :: Scientific/Engineering",
2827
"Topic :: Scientific/Engineering :: Mathematics",
2928
]
30-
requires-python = ">= 3.11,<3.14"
29+
requires-python = ">= 3.11,<3.13"
3130
dependencies = [
3231
"numpy",
3332
"torch",

0 commit comments

Comments
 (0)