From 4c462d8107f8f6af010647b4324aac97f7b7d80b Mon Sep 17 00:00:00 2001 From: Akash Patel <17132214+acxz@users.noreply.github.com> Date: Fri, 18 Dec 2020 17:13:48 -0500 Subject: [PATCH] relax numpy req Co-authored-by: h-vetinari --- python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 03047d73b..5dfdbf033 100644 --- a/python/setup.py +++ b/python/setup.py @@ -138,7 +138,8 @@ install_requires = [ "grpcio >= 1.28.1", "jsonschema", "msgpack >= 1.0.0, < 2.0.0", - "numpy >= 1.19.3", + "numpy >= 1.16; python_version < '3.9'", + "numpy >= 1.19.3; python_version >= '3.9'", "protobuf >= 3.8.0", "py-spy >= 0.2.0", "pyyaml",