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

Temporarily use Dask version constraint in CI #34

Merged
merged 4 commits into from
Mar 19, 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
7 changes: 6 additions & 1 deletion ci/environment-py36-numpy1.16.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: xhistogram_test_env
dependencies:
- python=3.6
- xarray
- dask
# Dask 2021.3.0 introduced a regression which broke xhistogram.
# This regression should be fixed in the next Dask release and we
# should remove the dask version pinning below.
# see https://github.com/dask/dask/pull/7391
# and https://github.com/xgcm/xhistogram/issues/27
- dask!=2021.3.0
- numpy==1.16
- pytest
- pip
Expand Down
7 changes: 6 additions & 1 deletion ci/environment-py36-numpy1.17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ channels:
dependencies:
- python=3.6
- xarray
- dask
# Dask 2021.3.0 introduced a regression which broke xhistogram.
# This regression should be fixed in the next Dask release and we
# should remove the dask version pinning below.
# see https://github.com/dask/dask/pull/7391
# and https://github.com/xgcm/xhistogram/issues/27
- dask!=2021.3.0
- numpy==1.17
- pytest
- pip
Expand Down
7 changes: 6 additions & 1 deletion ci/environment-py36.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: xhistogram_test_env
dependencies:
- python=3.6
- xarray
- dask
# Dask 2021.3.0 introduced a regression which broke xhistogram.
# This regression should be fixed in the next Dask release and we
# should remove the dask version pinning below.
# see https://github.com/dask/dask/pull/7391
# and https://github.com/xgcm/xhistogram/issues/27
- dask!=2021.3.0
- numpy
- pytest
- pip
Expand Down
7 changes: 6 additions & 1 deletion ci/environment-py37.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: xhistogram_test_env
dependencies:
- python=3.7
- xarray
- dask
# Dask 2021.3.0 introduced a regression which broke xhistogram.
# This regression should be fixed in the next Dask release and we
# should remove the dask version pinning below.
# see https://github.com/dask/dask/pull/7391
# and https://github.com/xgcm/xhistogram/issues/27
- dask!=2021.3.0
- numpy
- pytest
- pip
Expand Down
7 changes: 6 additions & 1 deletion ci/environment-py38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: xhistogram_test_env
dependencies:
- python=3.8
- xarray
- dask
# Dask 2021.3.0 introduced a regression which broke xhistogram.
# This regression should be fixed in the next Dask release and we
# should remove the dask version pinning below.
# see https://github.com/dask/dask/pull/7391
# and https://github.com/xgcm/xhistogram/issues/27
- dask!=2021.3.0
- numpy
- pytest
- pip
Expand Down