From cb38feff3b12b40c58c81ac9fa93f25e5c70caa7 Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Wed, 7 Apr 2021 10:22:10 +0200 Subject: [PATCH 1/2] Fix numba version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 06225e7..d69fdbf 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ REQUIREMENTS = { ], 'install': [ 'netCDF4', - 'numba', + 'numba=0.52', 'numpy', 'six', ], -- GitLab From dc0cb13c31d22410c60379620cd6acef3796005e Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Wed, 7 Apr 2021 10:30:59 +0200 Subject: [PATCH 2/2] Fix version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d69fdbf..784af4c 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ REQUIREMENTS = { ], 'install': [ 'netCDF4', - 'numba=0.52', + 'numba==0.52', 'numpy', 'six', ], -- GitLab