From 2198c5f4a741e8d52d55bf475e4572cd3b5e3116 Mon Sep 17 00:00:00 2001 From: dougiesquire Date: Wed, 21 Apr 2021 16:29:03 +1000 Subject: [PATCH] avoid xhistogram=0.1.3 --- ci/dev.yml | 4 +++- ci/doc.yml | 4 +++- ci/docs_notebooks.yml | 4 +++- ci/minimum-tests.yml | 4 +++- requirements.txt | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/ci/dev.yml b/ci/dev.yml index 3f7c7334..c384582a 100644 --- a/ci/dev.yml +++ b/ci/dev.yml @@ -22,7 +22,9 @@ dependencies: - scikit-learn - scipy - xarray>=0.16.1 - - xhistogram>=0.1.2 + # xhistogram 0.1.3 introduced an error that broke xskillscore + # see https://github.com/xgcm/xhistogram/issues/48 + - xhistogram!=0.1.3 # Package Management - asv - black diff --git a/ci/doc.yml b/ci/doc.yml index 3808fa8c..fc16ddca 100644 --- a/ci/doc.yml +++ b/ci/doc.yml @@ -19,6 +19,8 @@ dependencies: - sphinx-autosummary-accessors - toolz - xarray>=0.16.1 - - xhistogram>=0.1.2 + # xhistogram 0.1.3 introduced an error that broke xskillscore + # see https://github.com/xgcm/xhistogram/issues/48 + - xhistogram!=0.1.3 - pip: - -e .. diff --git a/ci/docs_notebooks.yml b/ci/docs_notebooks.yml index 53cb29cf..3b4a096d 100644 --- a/ci/docs_notebooks.yml +++ b/ci/docs_notebooks.yml @@ -12,7 +12,9 @@ dependencies: - scikit-learn - scipy - xarray>=0.16.1 - - xhistogram>=0.1.2 + # xhistogram 0.1.3 introduced an error that broke xskillscore + # see https://github.com/xgcm/xhistogram/issues/48 + - xhistogram!=0.1.3 - importlib_metadata - jupyterlab - matplotlib-base diff --git a/ci/minimum-tests.yml b/ci/minimum-tests.yml index b92ce6b3..035a474c 100644 --- a/ci/minimum-tests.yml +++ b/ci/minimum-tests.yml @@ -12,7 +12,9 @@ dependencies: - scikit-learn - scipy - xarray>=0.16.1 - - xhistogram>=0.1.2 + # xhistogram 0.1.3 introduced an error that broke xskillscore + # see https://github.com/xgcm/xhistogram/issues/48 + - xhistogram!=0.1.3 - coveralls - pytest - pytest-cov diff --git a/requirements.txt b/requirements.txt index b37423d8..cf099cd1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,6 @@ scikit-learn scipy toolz xarray>=0.16.1 -xhistogram>=0.1.2 +# xhistogram 0.1.3 introduced an error that broke xskillscore +# see https://github.com/xgcm/xhistogram/issues/48 +xhistogram!=0.1.3