From b96112d6c0f75b4ac730691509002dcdbde3335f Mon Sep 17 00:00:00 2001 From: Alexander Schepanovski Date: Wed, 30 Oct 2019 21:19:16 +0700 Subject: [PATCH] dvc: fix tqdm dep tqdm==4.35.0 was throwing KeyError: 'percentage'. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 47bd6c46bb..1780637a6d 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def run(self): "funcy>=1.12", "pathspec>=0.6.0", "shortuuid>=0.5.0", - "tqdm>=4.35.0,<5", + "tqdm>=4.36.1,<5", "packaging>=19.0", "win-unicode-console>=0.5; sys_platform == 'win32'", ]