Skip to content

Commit 59dab32

Browse files
authored
Merge branch 'main' into CPU_COUNT
2 parents 0904e5e + 0a07553 commit 59dab32

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/additional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v6
1717

1818
- name: Setup Conda Environment
19-
uses: conda-incubator/setup-miniconda@v3.2.0
19+
uses: conda-incubator/setup-miniconda@v3.3.0
2020
with:
2121
miniforge-version: latest
2222
use-mamba: true

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
fetch-depth: 0
3434
- name: Set up Python
35-
uses: conda-incubator/setup-miniconda@v3.2.0
35+
uses: conda-incubator/setup-miniconda@v3.3.0
3636
with:
3737
miniforge-version: latest
3838
use-mamba: true

.github/workflows/test-report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
repository: dask/distributed
2727

2828
- name: Setup Conda Environment
29-
uses: conda-incubator/setup-miniconda@v3.2.0
29+
uses: conda-incubator/setup-miniconda@v3.3.0
3030
with:
3131
miniforge-version: latest
3232
condarc-file: continuous_integration/condarc

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
java-version: "11"
7979

8080
- name: Setup Conda Environment
81-
uses: conda-incubator/setup-miniconda@v3.2.0
81+
uses: conda-incubator/setup-miniconda@v3.3.0
8282
with:
8383
miniforge-version: latest
8484
use-mamba: true

.github/workflows/upstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: actions/checkout@v6
4646

4747
- name: Setup Conda Environment
48-
uses: conda-incubator/setup-miniconda@v3.2.0
48+
uses: conda-incubator/setup-miniconda@v3.3.0
4949
with:
5050
miniforge-version: latest
5151
use-mamba: true

dask/array/tests/test_xarray.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ def test_positional_indexer_multiple_variables():
9191

9292
@pytest.mark.parametrize("compute", [True, False])
9393
def test_xarray_blockwise_fusion_store(compute):
94+
pytest.importorskip("zarr")
95+
9496
def custom_scheduler_get(dsk, keys, expected, **kwargs):
9597
dsk = dsk.__dask_graph__()
9698
assert (

0 commit comments

Comments
 (0)