From e16c6f6d5ed25b52f7fc2f63e8c1cc4103a80423 Mon Sep 17 00:00:00 2001 From: Wade Barnes Date: Thu, 10 Feb 2022 13:03:28 -0800 Subject: [PATCH] Upgrade ConfigArgParse to version 1.5.3 - This allows multi-instance multi-argument parameters such as `--inbound-transport` to be specified using the associated environment variable. Version 1.2.3 of ConfigArgParse was unable to parse the associated environment variables properly. - Example using the environment variable for `--inbound-transport`: `ACAPY_INBOUND_TRANSPORT=[[\"http\",\"0.0.0.0\",\"8021\"],[\"ws\",\"0.0.0.0\",\"8023\"]]` Results In: ``` :::::::::::::::::::::::::::::::::::::::::::::: :: Aries Cloud Agent :: :: :: :: :: :: Inbound Transports: :: :: :: :: - http://0.0.0.0:8021 :: :: - ws://0.0.0.0:8023 :: ... ``` Signed-off-by: Wade Barnes --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 30119fb677..6d98ce200c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ requests~=2.25.0 packaging~=20.4 pyld~=2.0.3 pyyaml~=5.4.0 -ConfigArgParse~=1.2.3 +ConfigArgParse~=1.5.3 pyjwt~=1.7.1 pydid~=0.3.3 jsonpath_ng==1.5.2