From 43161511a8ef26ef8bb094a3a3f634f1fd39a14f Mon Sep 17 00:00:00 2001 From: Kim Ebert Date: Tue, 6 Dec 2022 13:34:20 -0700 Subject: [PATCH 1/2] fix: fix python3-indy requirement Signed-off-by: Kim Ebert --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 92f9368e3a..f2251f5d4e 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ exec(f.read(), metadata) tests_require = ['attrs==20.3.0', 'pytest==6.2.2', 'pytest-xdist==2.2.1', 'pytest-forked==1.3.0', - 'python3-indy==1.15.0-dev-1625', 'pytest-asyncio==0.14.0'] + 'python3-indy==1.16.0.post236', 'pytest-asyncio==0.14.0'] class PyZMQCommand(distutils.cmd.Command): @@ -156,4 +156,4 @@ def run(self): 'scripts/init_bls_keys', 'scripts/process_logs/process_logs', 'scripts/process_logs/process_logs.yml'] -) \ No newline at end of file +) From 92e0a729f14d00bf8c373eef823591b0d53e1adb Mon Sep 17 00:00:00 2001 From: Kim Ebert Date: Tue, 6 Dec 2022 15:12:55 -0700 Subject: [PATCH 2/2] add pyzmq Signed-off-by: Kim Ebert --- .gitpod.Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index d08ef9d532..0044fc159b 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -67,6 +67,12 @@ RUN pip3 install -U \ pep8-naming==0.6.1 \ flake8==3.8.4 +RUN pip3 install -U \ + # Required by setup.py + setuptools==50.3.2 \ + 'pyzmq==22.3.0' + + # install rake RUN sudo gem install --no-document rake ## install fpm; needs to be pinned to 1.13.1 because some packages cannot be built with the newest release 1.14.0