From 9d56349868d990c66d7b9cf776be200a35fda18d Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 9 Feb 2021 13:28:01 -0600 Subject: [PATCH] build: Update minimum required tqdm release to avoid repr crash (#1302) * Update tqdm to require tqdm v4.56 as minimum to get tqdm.__repr__() crash fix - c.f. https://github.com/tqdm/tqdm/issues/624 - Fix was released in tqdm v4.5.6.1, but minimum of v4.56 will pick this up --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 76dfbb4424..1772a467e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,7 +37,7 @@ python_requires = >=3.6 install_requires = scipy~=1.4 # requires numpy, which is required by pyhf and tensorflow click~=7.0 # for console scripts - tqdm~=4.25 # for readxml + tqdm~=4.56 # for readxml jsonschema~=3.2 # for utils jsonpatch~=1.23 pyyaml~=5.1 # for parsing CLI equal-delimited options