From e3ee415b1a21338e3ac9630261d883ab78f9a560 Mon Sep 17 00:00:00 2001 From: Trinkle23897 Date: Mon, 8 Feb 2021 12:59:37 +0800 Subject: [PATCH] temporary fix numpy<1.20.0 (#281) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b22472..f8736fa 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setup( install_requires=[ "gym>=0.15.4", "tqdm", - "numpy!=1.16.0", # https://github.com/numpy/numpy/issues/12793 + "numpy!=1.16.0,<1.20.0", # https://github.com/numpy/numpy/issues/12793 "tensorboard", "torch>=1.4.0", "numba>=0.51.0",