Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix py3.6 CI #234

Merged
merged 7 commits into from
Jan 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion ci/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
- bottleneck
- cftime
- dask
- numba
- numba>=0.52
- numpy
- properscoring
- scikit-learn
Expand Down
4 changes: 2 additions & 2 deletions ci/docs_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions ci/minimum-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bottleneck
cftime
dask
numba
numba>=0.52
numpy
properscoring
scikit-learn
Expand Down