Skip to content

Commit fb382ba

Browse files
authored
Update onnx_ir and onnx dependency versions (#2749)
Updated version constraints for onnx_ir and onnx dependencies. onnx -> 1.17 to match tested versions onnx-ir -> 1.13 to support 2bit dtypes.
1 parent 8c6084c commit fb382ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"packaging",
4242
"protobuf",
4343
)
44-
ONNX_IR = "onnx_ir==0.1.12"
44+
ONNX_IR = "onnx_ir==0.1.13"
4545
ONNX_IR_MAIN = "git+https://github.com/onnx/ir-py.git@main#egg=onnx_ir"
4646

4747

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ classifiers = [
2828
dependencies = [
2929
"ml_dtypes",
3030
"numpy",
31-
"onnx_ir>=0.1.12,<2", # Expect onnx_ir to have a breaking change in 2.0. If not, extend this range.
32-
"onnx>=1.16",
31+
"onnx_ir>=0.1.13,<2", # Expect onnx_ir to have a breaking change in 2.0. If not, extend this range.
32+
"onnx>=1.17",
3333
"packaging",
3434
"typing_extensions>=4.10",
3535
]

0 commit comments

Comments
 (0)