Skip to content

Commit a6a29f0

Browse files
authored
Merge branch 'main' into non_index_coords_compat_override
2 parents 4c5a3a4 + 121f266 commit a6a29f0

File tree

14 files changed

+186
-67
lines changed

14 files changed

+186
-67
lines changed

.github/workflows/benchmarks-last-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# We need the full repo to avoid this issue
1919
# https://github.com/actions/checkout/issues/23
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
# We need the full repo to avoid this issue
2222
# https://github.com/actions/checkout/issues/23
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/ci-additional.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
outputs:
2727
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 2
3232
- uses: xarray-contrib/ci-trigger@v1
@@ -47,7 +47,7 @@ jobs:
4747
CONDA_ENV_FILE: ci/requirements/environment.yml
4848
PYTHON_VERSION: "3.12"
4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0 # Fetch all history for all branches and tags.
5353

@@ -93,7 +93,7 @@ jobs:
9393
PYTHON_VERSION: "3.12"
9494

9595
steps:
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
with:
9898
fetch-depth: 0 # Fetch all history for all branches and tags.
9999

@@ -144,7 +144,7 @@ jobs:
144144
PYTHON_VERSION: "3.11"
145145

146146
steps:
147-
- uses: actions/checkout@v5
147+
- uses: actions/checkout@v6
148148
with:
149149
fetch-depth: 0 # Fetch all history for all branches and tags.
150150

@@ -200,7 +200,7 @@ jobs:
200200
PYTHON_VERSION: "3.12"
201201

202202
steps:
203-
- uses: actions/checkout@v5
203+
- uses: actions/checkout@v6
204204
with:
205205
fetch-depth: 0 # Fetch all history for all branches and tags.
206206

@@ -256,7 +256,7 @@ jobs:
256256
PYTHON_VERSION: "3.11"
257257

258258
steps:
259-
- uses: actions/checkout@v5
259+
- uses: actions/checkout@v6
260260
with:
261261
fetch-depth: 0 # Fetch all history for all branches and tags.
262262

@@ -308,7 +308,7 @@ jobs:
308308
COLUMNS: 120
309309

310310
steps:
311-
- uses: actions/checkout@v5
311+
- uses: actions/checkout@v6
312312
with:
313313
fetch-depth: 0 # Fetch all history for all branches and tags.
314314

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
outputs:
2727
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 2
3232
- uses: xarray-contrib/ci-trigger@v1
@@ -80,7 +80,7 @@ jobs:
8080
numprocesses: 1
8181
os: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@v5
83+
- uses: actions/checkout@v6
8484
with:
8585
fetch-depth: 0 # Fetch all history for all branches and tags.
8686
- name: Set environment variables

.github/workflows/hypothesis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
outputs:
2626
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 2
3131
- uses: xarray-contrib/ci-trigger@v1
@@ -53,7 +53,7 @@ jobs:
5353
PYTHON_VERSION: "3.12"
5454

5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757
with:
5858
fetch-depth: 0 # Fetch all history for all branches and tags.
5959

.github/workflows/nightly-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
if: github.repository == 'pydata/xarray'
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0
1414
- uses: actions/setup-python@v6

.github/workflows/pypi-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
startsWith(github.ref, 'refs/tags/v')
2121
) }}
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
- uses: actions/setup-python@v6

.github/workflows/upstream-dev-ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
outputs:
3030
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 2
3535
- uses: xarray-contrib/ci-trigger@v1
@@ -56,7 +56,7 @@ jobs:
5656
matrix:
5757
python-version: ["3.12"]
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
with:
6161
fetch-depth: 0 # Fetch all history for all branches and tags.
6262
- name: Set up conda environment
@@ -112,7 +112,7 @@ jobs:
112112
matrix:
113113
python-version: ["3.11"]
114114
steps:
115-
- uses: actions/checkout@v5
115+
- uses: actions/checkout@v6
116116
with:
117117
fetch-depth: 0 # Fetch all history for all branches and tags.
118118
- name: Set up conda environment

ci/requirements/environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ dependencies:
3737
- pre-commit
3838
- pyarrow # pandas raises a deprecation warning without this, breaking doctests
3939
- pydap
40-
- pydap-server
4140
- pytest
4241
- pytest-asyncio
4342
- pytest-cov

doc/whats-new.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ v2025.11.1 (unreleased)
1414
New Features
1515
~~~~~~~~~~~~
1616

17+
- Improved ``pydap`` backend behavior and performance when using :py:func:`open_dataset`, :py:func:`open_datatree`
18+
when downloading dap4 (opendap) dimensions data (:issue:`10628`, :pull:`10629`). In addition ``checksums=True|False``
19+
is added as optional argument to be passed to ``pydap`` backend.
20+
By `Miguel Jimenez-Urias <https://github.com/Mikejmnez>`_.
21+
1722
- :py:func:`combine_nested` now support :py:class:`DataTree` objects
1823
(:pull:`10849`).
1924
By `Stephan Hoyer <https://github.com/shoyer>`_.

0 commit comments

Comments
 (0)