We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1993131 commit 369c2c6Copy full SHA for 369c2c6
1 file changed
pyproject.toml
@@ -41,8 +41,14 @@ gspread = "3.6.0"
41
importlib-resources = "6.5.2"
42
ipython = "8.37.0"
43
numpy = "1.26.4"
44
-onnx = "1.18.0"
45
-onnxruntime = "1.22.0"
+# Cannot upgrade onnx and onnxruntime any further. For now this seems to be the
+# last compatible pair which is also consistent with qonnx.
46
+# Upgrading onnx will result in model IR version not supported by onnxruntime
47
+# Upgrading onnxruntime fixes some MaxPool edge case which however requires onnx
48
+# to be upgraded to produce a consistent model, but this in turn cannot be done
49
+# due to the model IR version support issue...
50
+onnx = "1.17.0"
51
+onnxruntime = "1.20.1"
52
pre-commit = "4.2.0"
53
protobuf = "4.25.8"
54
psutil = "5.9.4"
0 commit comments