Skip to content

Commit cdd69c4

Browse files
authored
chore: Add python 3.13 support (#219)
* Document that torchjd can work with python 3.13 * Add 3.13 to the list of python versions tested in tests.yml
1 parent c6d2866 commit cdd69c4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false # Ensure matrix jobs keep running even if one fails
1414
matrix:
15-
python-version: ['3.10', '3.11', '3.12']
15+
python-version: ['3.10', '3.11', '3.12', '3.13']
1616
os: [ubuntu-latest, macOS-latest, windows-latest]
1717

1818
steps:

docs/source/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
:end-before: <!-- end installation -->
66
```
77

8-
Note that `torchjd` requires python 3.10, 3.11 or 3.12 and `torch>=2.0`.
8+
Note that `torchjd` requires python 3.10, 3.11, 3.12 or 3.13 and `torch>=2.0`.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Topic :: Scientific/Engineering",
3536
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3637
]

0 commit comments

Comments
 (0)