Skip to content

Commit b615f19

Browse files
committed
ci: include python3.13 in the matrix, disable tensorflow
TensorFlow is still not compatible with python3.13 ¯\_(ツ)_/¯
1 parent b24d7fb commit b615f19

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ jobs:
3030
python-version: "3.11"
3131
- os: ubuntu-latest
3232
python-version: "3.12"
33-
# - os: ubuntu-latest
34-
# python-version: "3.13"
35-
# python3.13: disabled until tensorflow supports
33+
- os: ubuntu-latest
34+
python-version: "3.13"
3635

3736
steps:
3837
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
]
2829

2930
[project.urls]
@@ -40,7 +41,7 @@ test = [
4041
"pytest",
4142
"numpy>=1.21,<2.0",
4243
"torch>=2.0,<3.0; python_version >= '3.8'",
43-
"tensorflow>=2.0,<3.0; python_version >= '3.8'",
44+
"tensorflow>=2.0,<3.0; python_version >= '3.8' and python_version < '3.13'",
4445
"matplotlib>=3.3",
4546
"Pillow",
4647
]

0 commit comments

Comments
 (0)