From 0316087bf8ab496c9f8942f787058b5ba2e9a5aa Mon Sep 17 00:00:00 2001 From: Michael Chestnut Date: Mon, 29 Jun 2020 15:32:23 -0500 Subject: [PATCH 1/2] updating grpcio dependency --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1b33803..072a51c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # GRPC / Protobuff related -grpcio==1.16.1 -grpcio-tools==1.16.1 +grpcio>==1.16.1 +grpcio-tools>==1.16.1 # Time related utils pytz From bcc28a5508a68004e303c98004897203de7b9abf Mon Sep 17 00:00:00 2001 From: Michael Chestnut Date: Wed, 12 Aug 2020 13:40:06 -0500 Subject: [PATCH 2/2] fixes credential path bug --- btrdb/utils/credentials.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btrdb/utils/credentials.py b/btrdb/utils/credentials.py index 3294e91..e7d2510 100644 --- a/btrdb/utils/credentials.py +++ b/btrdb/utils/credentials.py @@ -27,7 +27,7 @@ CONFIG_DIR = ".predictivegrid" CREDENTIALS_FILENAME = "credentials.yaml" -CREDENTIALS_PATH = os.path.join(os.environ["HOME"], CONFIG_DIR, CREDENTIALS_FILENAME) +CREDENTIALS_PATH = os.path.join(os.path.expanduser("~"), CONFIG_DIR, CREDENTIALS_FILENAME) ########################################################################## ## Functions