From 5a5cb82537417f48754f4f26eb5b6d0aebfb1866 Mon Sep 17 00:00:00 2001 From: Local State Date: Thu, 24 Mar 2022 16:50:19 -0400 Subject: [PATCH] remove numpy version requirements Is it possible to remove numpy version requirements? I want to use the benchmark, but my codes are relying on some new bug fixes after `numpy>1.20`. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65e6aec..c268b78 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def read(fname="README.md"): # What packages are required for this module to be executed? -REQUIRED = ["numpy>=1.16.5,<=1.19.5", "pyyaml>=5.0.0", "fvcore"] +REQUIRED = ["numpy>=1.16.5", "pyyaml>=5.0.0", "fvcore"] packages = find_packages( exclude=("tests", "scripts", "scripts-search", "lib*", "exps*")