From be6e47157169d8bb65dae733a5fd9b8f142f006e Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Wed, 6 Jan 2021 17:09:01 -0500 Subject: [PATCH 1/7] TEST CI --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 91e9bafd..829a997d 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import find_packages, setup +from setuptools import find_packages, setup DISTNAME = "xskillscore" LICENSE = "Apache" From 1b40d1e4e34d0f38861f0c577493ea74cc255e29 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 7 Jan 2021 11:31:28 -0500 Subject: [PATCH 2/7] pin numba to >= 0.52 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a441ca4f..928cd53a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ bottleneck cftime dask -numba +numba>=0.52 numpy properscoring scikit-learn From 34c24dc9f94a0c1ef9bd9d103f2b589f88f63db2 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 7 Jan 2021 11:33:35 -0500 Subject: [PATCH 3/7] revert back --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 829a997d..91e9bafd 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import find_packages, setup +from setuptools import find_packages, setup DISTNAME = "xskillscore" LICENSE = "Apache" From 2e871d84783e44b5789f1ca0d896e5ffd01f850a Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 7 Jan 2021 11:44:20 -0500 Subject: [PATCH 4/7] pin versions to minimum-tests.yml --- ci/minimum-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/minimum-tests.yml b/ci/minimum-tests.yml index 1a5603d6..46da8c92 100644 --- a/ci/minimum-tests.yml +++ b/ci/minimum-tests.yml @@ -5,12 +5,12 @@ dependencies: - bottleneck - cftime - dask - - numba + - numba>=0.52 - numpy - properscoring - scikit-learn - scipy - - xarray + - xarray>=0.16.1 - xhistogram - coveralls - pytest From a5b8365212102dde16b6a9eb6a790afd8a779946 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 7 Jan 2021 12:08:51 -0500 Subject: [PATCH 5/7] add to changelog --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 211bb5b1..bdacfe03 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -36,6 +36,7 @@ Internal Changes - Lint with the latest black. (:issue:`179`, :pr:`191`). `Ray Bell`_ - Update mape algorithm from scikit-learn v0.24.0 and test against it. (:issue:`160`, :pr:`230`) `Ray Bell`_ +- Pin ``numba`` to ``>=0.52`` to fix CI (:issue:`233`, :pr:`234`) `Ray Bell`_ xskillscore v0.0.18 (2020-09-23) From 92e74a0ce436cc972dd6878a1fa26e97b056c838 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 7 Jan 2021 12:13:37 -0500 Subject: [PATCH 6/7] pin numba --- ci/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/dev.yml b/ci/dev.yml index 8579f1bd..b0353fdc 100644 --- a/ci/dev.yml +++ b/ci/dev.yml @@ -16,7 +16,7 @@ dependencies: - bottleneck - cftime - dask - - numba + - numba>=0.52 - numpy - properscoring - scikit-learn From 1cde8af6bf5a9cdc7742823015f5eb1fa16a88b3 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 7 Jan 2021 12:14:36 -0500 Subject: [PATCH 7/7] pin numba and xarray --- ci/docs_notebooks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/docs_notebooks.yml b/ci/docs_notebooks.yml index e5fe708f..c0bbd909 100644 --- a/ci/docs_notebooks.yml +++ b/ci/docs_notebooks.yml @@ -5,12 +5,12 @@ dependencies: - bottleneck - cftime - dask - - numba + - numba>=0.52 - numpy - properscoring - scikit-learn - scipy - - xarray + - xarray>=0.16.1 - xhistogram - importlib_metadata - jupyterlab