From 66f7d6477a77e28854f954baac2dc519d46fd5ad Mon Sep 17 00:00:00 2001 From: iFergal Date: Tue, 14 May 2024 19:55:53 +0100 Subject: [PATCH 1/2] build: pin exact keripy version in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e565c77a..da75ff30 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ python_requires='>=3.12.2', install_requires=[ 'hio>=0.6.12', - 'keri>=1.2.0-dev0', + 'keri==1.2.0-dev0', 'mnemonic>=0.20', 'multicommand>=1.0.0', 'falcon>=3.1.3', From b45047793120d167f0f9d7fae824e1462efcd608 Mon Sep 17 00:00:00 2001 From: iFergal Date: Tue, 14 May 2024 20:08:48 +0100 Subject: [PATCH 2/2] build: pin to latest --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index da75ff30..c2732386 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ python_requires='>=3.12.2', install_requires=[ 'hio>=0.6.12', - 'keri==1.2.0-dev0', + 'keri==1.2.0-dev2', 'mnemonic>=0.20', 'multicommand>=1.0.0', 'falcon>=3.1.3',