From 2fc416f1d8571ea1cbcb2838784d5d1e06c78040 Mon Sep 17 00:00:00 2001 From: Michael Liu Date: Thu, 21 Jan 2021 09:57:13 -0800 Subject: [PATCH 1/2] Remove unused pyyaml import --- client/verta/verta/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/client/verta/verta/client.py b/client/verta/verta/client.py index c8fcd80c61..21b1fc9cff 100644 --- a/client/verta/verta/client.py +++ b/client/verta/verta/client.py @@ -19,7 +19,6 @@ import zipfile import requests -import yaml from verta._tracking.organization import Organization from ._internal_utils._utils import check_unnecessary_params_warning From 17238a8a0e6e5c6637c478367b48e6db807f59c3 Mon Sep 17 00:00:00 2001 From: Michael Liu Date: Thu, 21 Jan 2021 09:58:01 -0800 Subject: [PATCH 2/2] Constrain pyyaml to <5.4 --- client/verta/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/verta/setup.py b/client/verta/setup.py index 92ce76ae62..a193693bd5 100644 --- a/client/verta/setup.py +++ b/client/verta/setup.py @@ -31,7 +31,7 @@ "googleapis-common-protos>=1.5", "pathlib2>=2.2", "protobuf>=3.8", - "pyyaml>=5.1", + "pyyaml>=5.1, <5.4", "requests>=2.21, <3.0", ], entry_points={