From f92c2e65325c3586aba23bdbcf490ef02955089c Mon Sep 17 00:00:00 2001 From: Luke Roy Date: Thu, 4 Aug 2022 12:28:57 +0200 Subject: [PATCH] Addd fixed protobuf version for etcd Pinning Protobuf version so etcd works again protobuf==3.20.1 --- python3.7/requirements.txt | 3 +++ python3.9/requirements.txt | 3 +++ 2 files changed, 6 insertions(+) diff --git a/python3.7/requirements.txt b/python3.7/requirements.txt index 8cd3098..bb9e002 100644 --- a/python3.7/requirements.txt +++ b/python3.7/requirements.txt @@ -51,3 +51,6 @@ etcd3 == 0.10.0 # Other required modules botocore == 1.15.46 tornado == 4.5.2 + +# required for etcd3 to work correctly can be removed at any time do not use in your own actions +protobuf==3.20.1 diff --git a/python3.9/requirements.txt b/python3.9/requirements.txt index 5207350..1c96554 100644 --- a/python3.9/requirements.txt +++ b/python3.9/requirements.txt @@ -51,3 +51,6 @@ etcd3 == 0.12.0 # Other required modules botocore == 1.23.35 tornado == 6.1 + +# required for etcd3 to work correctly can be removed at any time do not use in your own actions +protobuf==3.20.1