Skip to content

Commit

Permalink
Add dask-expr for windows envs (#8837)
Browse files Browse the repository at this point in the history
* Add dask-expr for windows envs

* Add xfail

* xfail
  • Loading branch information
dcherian authored Mar 15, 2024
1 parent 9c311e8 commit b0e504e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions ci/requirements/environment-windows-3.12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies:
- cartopy
- cftime
- dask-core
- dask-expr
- distributed
- flox
- fsspec
Expand Down
1 change: 1 addition & 0 deletions ci/requirements/environment-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies:
- cartopy
- cftime
- dask-core
- dask-expr
- distributed
- flox
- fsspec
Expand Down
1 change: 1 addition & 0 deletions xarray/tests/test_dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -3420,6 +3420,7 @@ def test_to_dataframe_0length(self) -> None:

@requires_dask_expr
@requires_dask
@pytest.mark.xfail(reason="dask-expr is broken")
def test_to_dask_dataframe(self) -> None:
arr_np = np.arange(3 * 4).reshape(3, 4)
arr = DataArray(arr_np, [("B", [1, 2, 3]), ("A", list("cdef"))], name="foo")
Expand Down

0 comments on commit b0e504e

Please sign in to comment.