From 3f98e2c912eb28dca110516917f3de0cbedaf8c9 Mon Sep 17 00:00:00 2001 From: Michael Goin Date: Mon, 26 Jun 2023 17:12:33 -0400 Subject: [PATCH] Lift protobuf restriction to allow onnx 1.14 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 538301d69f..e027c80209 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def _parse_requirements_file(file_path): "pydantic>=1.8.2", "requests>=2.0.0", "tqdm>=4.0.0", - "protobuf>=3.12.2,<=3.20.1", + "protobuf>=3.12.2", "click>=7.1.2,!=8.0.0", # latest version < 8.0 + blocked version with reported bug ] _nm_deps = [f"{'sparsezoo' if is_release else 'sparsezoo-nightly'}~={version_base}"]