From 4eedb68f23ee0f148943b616c96e07fbe8d0046b Mon Sep 17 00:00:00 2001 From: Chenxing Luo Date: Wed, 23 Feb 2022 18:32:42 -0500 Subject: [PATCH] Add upper limit for numpy to address numba issue --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3959d8f..d699c05 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ url='https://github.com/MineralsCloud/cij/', packages=find_packages(), install_requires=[ - "numpy >= 1.10.0", + "numpy >= 1.10.0, <= 1.21", "pandas", "scipy", "qha",