From 6b7e4047a1542262619ed7523a729b19f5cfef30 Mon Sep 17 00:00:00 2001 From: yukirora Date: Tue, 17 Sep 2024 13:17:28 +0000 Subject: [PATCH 1/2] limit protobuf version to be 3.20.x --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index ac9f2d266..005a28a11 100644 --- a/setup.py +++ b/setup.py @@ -168,6 +168,7 @@ def run(self): 'openpyxl>=3.0.7', 'packaging>=21.0', 'pandas>=1.1.5', + 'protobuf<=3.20.3' 'pssh @ git+https://github.com/lilydjwg/pssh.git@v2.3.4', 'pyyaml>=5.3', 'requests>=2.27.1', From 0f407315ddf224f07c81dbd50aa7a3f650a205ca Mon Sep 17 00:00:00 2001 From: yukirora Date: Tue, 17 Sep 2024 13:54:16 +0000 Subject: [PATCH 2/2] bugfix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 005a28a11..c85455593 100644 --- a/setup.py +++ b/setup.py @@ -168,7 +168,7 @@ def run(self): 'openpyxl>=3.0.7', 'packaging>=21.0', 'pandas>=1.1.5', - 'protobuf<=3.20.3' + 'protobuf<=3.20.3', 'pssh @ git+https://github.com/lilydjwg/pssh.git@v2.3.4', 'pyyaml>=5.3', 'requests>=2.27.1',