Skip to content

Commit 4a8bb53

Browse files
committed
Fixing broken compatibilities
1 parent 8b52e8b commit 4a8bb53

2 files changed

Lines changed: 37 additions & 12 deletions

File tree

docs/compatibility.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ The table below is generated from `scripts/compat_matrix.py`.
88
| `onnx` | `min` (`py3.13` override) | `onnxruntime==1.20.1`, `numpy==2.1.3` | 3.13 |
99
| `onnx` | `current` | `onnxruntime==1.20.1`, `numpy==2.1.3` | 3.10, 3.11, 3.12, 3.13, 3.14 |
1010
| `torch` | `min` | `torch==2.4.1`, `numpy==1.26.4` | 3.10, 3.11, 3.12, 3.13, 3.14 |
11-
| `torch` | `min` (`py3.13` override) | `torch==2.5.0`, `numpy==2.1.3` | 3.13 |
11+
| `torch` | `min` (`py3.13` override) | `torch==2.6.0`, `numpy==2.1.3` | 3.13 |
1212
| `torch` | `min` (`py3.14` override) | `torch==2.5.0`, `numpy==2.1.3` | 3.14 |
1313
| `torch` | `current` | `torch==2.6.0`, `numpy==2.1.3` | 3.10, 3.11, 3.12, 3.13, 3.14 |
1414
| `torch` | `current` (`py3.14` override) | `torch==2.10.0`, `numpy==2.1.3` | 3.14 |
15-
| `timm` | `min` | `torch==2.4.1`, `timm==1.0.11`, `numpy==1.26.4` | 3.10, 3.11, 3.12, 3.13, 3.14 |
16-
| `timm` | `min` (`py3.13` override) | `torch==2.5.0`, `timm==1.0.11`, `numpy==2.1.3` | 3.13 |
17-
| `timm` | `min` (`py3.14` override) | `torch==2.5.0`, `timm==1.0.11`, `numpy==2.1.3` | 3.14 |
18-
| `timm` | `current` | `torch==2.6.0`, `timm==1.0.15`, `numpy==2.1.3` | 3.10, 3.11, 3.12, 3.13, 3.14 |
19-
| `timm` | `current` (`py3.14` override) | `torch==2.10.0`, `timm==1.0.15`, `numpy==2.1.3` | 3.14 |
15+
| `timm` | `min` | `torch==2.4.1`, `torchvision==0.19.1`, `timm==1.0.11`, `numpy==1.26.4` | 3.10, 3.11, 3.12, 3.13, 3.14 |
16+
| `timm` | `min` (`py3.13` override) | `torch==2.6.0`, `torchvision==0.21.0`, `timm==1.0.11`, `numpy==2.1.3` | 3.13 |
17+
| `timm` | `min` (`py3.14` override) | `torch==2.5.0`, `torchvision==0.19.1`, `timm==1.0.11`, `numpy==2.1.3` | 3.14 |
18+
| `timm` | `current` | `torch==2.6.0`, `torchvision==0.21.0`, `timm==1.0.15`, `numpy==2.1.3` | 3.10, 3.11, 3.12, 3.13, 3.14 |
19+
| `timm` | `current` (`py3.14` override) | `torch==2.10.0`, `torchvision==0.25.0`, `timm==1.0.15`, `numpy==2.1.3` | 3.14 |
2020
| `tensorflow` | `min` | `tensorflow==2.16.1`, `keras==3.3.3`, `numpy==1.26.4` | 3.10, 3.11, 3.12 |
2121
| `tensorflow` | `current` | `tensorflow==2.18.0`, `keras==3.8.0`, `numpy==2.0.2` | 3.10, 3.11, 3.12 |

scripts/compat_matrix.py

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,18 @@
1616
"current": ["torch==2.6.0", "numpy==2.1.3"],
1717
},
1818
"timm": {
19-
"min": ["torch==2.4.1", "timm==1.0.11", "numpy==1.26.4"],
20-
"current": ["torch==2.6.0", "timm==1.0.15", "numpy==2.1.3"],
19+
"min": [
20+
"torch==2.4.1",
21+
"torchvision==0.19.1",
22+
"timm==1.0.11",
23+
"numpy==1.26.4",
24+
],
25+
"current": [
26+
"torch==2.6.0",
27+
"torchvision==0.21.0",
28+
"timm==1.0.15",
29+
"numpy==2.1.3",
30+
],
2131
},
2232
"tensorflow": {
2333
"min": ["tensorflow==2.16.1", "keras==3.3.3", "numpy==1.26.4"],
@@ -41,7 +51,7 @@
4151
},
4252
"torch": {
4353
"min": {
44-
"3.13": ["torch==2.5.0", "numpy==2.1.3"],
54+
"3.13": ["torch==2.6.0", "numpy==2.1.3"],
4555
"3.14": ["torch==2.5.0", "numpy==2.1.3"],
4656
},
4757
"current": {
@@ -50,11 +60,26 @@
5060
},
5161
"timm": {
5262
"min": {
53-
"3.13": ["torch==2.5.0", "timm==1.0.11", "numpy==2.1.3"],
54-
"3.14": ["torch==2.5.0", "timm==1.0.11", "numpy==2.1.3"],
63+
"3.13": [
64+
"torch==2.6.0",
65+
"torchvision==0.21.0",
66+
"timm==1.0.11",
67+
"numpy==2.1.3",
68+
],
69+
"3.14": [
70+
"torch==2.5.0",
71+
"torchvision==0.19.1",
72+
"timm==1.0.11",
73+
"numpy==2.1.3",
74+
],
5575
},
5676
"current": {
57-
"3.14": ["torch==2.10.0", "timm==1.0.15", "numpy==2.1.3"],
77+
"3.14": [
78+
"torch==2.10.0",
79+
"torchvision==0.25.0",
80+
"timm==1.0.15",
81+
"numpy==2.1.3",
82+
],
5883
}
5984
},
6085
}

0 commit comments

Comments
 (0)