From 43161511a8ef26ef8bb094a3a3f634f1fd39a14f Mon Sep 17 00:00:00 2001 From: Kim Ebert Date: Tue, 6 Dec 2022 13:34:20 -0700 Subject: [PATCH] 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 +)