From adac1b6d30d00a42edce2ba0aff2300da0a4df10 Mon Sep 17 00:00:00 2001 From: Justin Chu Date: Tue, 3 Jun 2025 11:55:45 -0700 Subject: [PATCH 1/2] Require onnx-ir 0.1.1 --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index ec786954c2..31cb10dc55 100644 --- a/noxfile.py +++ b/noxfile.py @@ -42,7 +42,7 @@ "packaging", "protobuf", ) -ONNX_IR = "onnx_ir==0.1.0" +ONNX_IR = "onnx_ir==0.1.1" ONNX_IR_MAIN = "git+https://github.com/onnx/ir-py.git@main#egg=onnx_ir" From 3554a01d974aab18f6abadd7975481b0b532882a Mon Sep 17 00:00:00 2001 From: Justin Chu Date: Tue, 3 Jun 2025 11:56:09 -0700 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3538e53786..14dcc52e54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ dependencies = [ "ml_dtypes", "numpy", - "onnx_ir>=0.1,<2", # Expect onnx_ir to have a breaking change in 2.0. If not, extend this range. + "onnx_ir>=0.1.1,<2", # Expect onnx_ir to have a breaking change in 2.0. If not, extend this range. "onnx>=1.16", "packaging", "typing_extensions>=4.10",