Skip to content

Commit b468cfa

Browse files
authored
Merge branch 'main' into perf/prepared-write-v2
2 parents d4ed3eb + e29ddd2 commit b468cfa

43 files changed

Lines changed: 308 additions & 216 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
1-
[Description of PR]
1+
<!-- The PR title becomes the squash-merge commit on main. Please use a descriptive,
2+
Conventional Commits-style title, e.g. "fix: handle 0-d arrays in `save_array`".
3+
This is the commit type (feat/fix/docs/chore/...), not the changelog category.
4+
See https://www.conventionalcommits.org/en/v1.0.0/ -->
5+
6+
## Summary
7+
8+
[Describe what this PR changes and why, in your own words.]
9+
10+
## For reviewers
11+
12+
[What would you most value a second look at? What are you already confident in? For a refactor, say whether behavior is meant to be unchanged.]
13+
14+
## Author attestation
15+
16+
- [ ] I am a human, these are my changes, and I have reviewed and understood every change and can explain why each is correct.
17+
18+
AI coding assistance is welcome, but a human must be the author and is responsible for the contents of the PR. The description and any review responses must be in your own words. Please read [AI-assisted contributions](https://zarr.readthedocs.io/en/stable/contributing/#ai-assisted-contributions) before opening.
19+
20+
## TODO
221

3-
TODO:
422
* [ ] Add unit tests and/or doctests in docstrings
523
* [ ] Add docstrings and API docs for any new/modified user-facing classes and functions
624
* [ ] New/modified features documented in `docs/user-guide/*.md`

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ updates:
1515
# Keep the pinned dev tooling in pyproject.toml's [dependency-groups] and the
1616
# uv.lock current. Without this the exact pins (e.g. pytest) would never be
1717
# bumped automatically and would silently rot.
18+
#
19+
# `allow: dependency-type: direct` restricts updates to dependencies declared
20+
# in pyproject.toml. Transitive deps in uv.lock are then only updated as a
21+
# side effect of a direct bump, never via a standalone PR.
1822
- package-ecosystem: "uv"
1923
directory: "/"
24+
allow:
25+
- dependency-type: "direct"
2026
schedule:
2127
interval: "weekly"
2228
groups:

.github/workflows/check_changelogs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
20+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2121
with:
2222
persist-credentials: false
2323

.github/workflows/codspeed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
github.event_name == 'workflow_dispatch' ||
2424
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'benchmark'))
2525
steps:
26-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
26+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2727
with:
2828
fetch-depth: 0
2929
persist-credentials: false
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
version: '1.16.5'
3434
- name: Run the benchmarks
35-
uses: CodSpeedHQ/action@9d332c4d90b43981c3e55ae8e38e68709996240f # v4.17.0
35+
uses: CodSpeedHQ/action@63f3e98b61959fe67f146a3ff022e4136fe9bb9c # v4.17.6
3636
with:
3737
mode: walltime
3838
run: hatch run test.py3.12-minimal:pytest tests/benchmarks --codspeed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Check docs
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
22+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2323
with:
2424
persist-credentials: false
2525
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

.github/workflows/downstream.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check out zarr-python
24-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
24+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2525
with:
2626
fetch-depth: 0
2727
persist-credentials: false
2828

2929
- name: Check out xarray
30-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
30+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3131
with:
3232
repository: pydata/xarray
3333
path: xarray
@@ -83,13 +83,13 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- name: Check out zarr-python
86-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
86+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
8787
with:
8888
fetch-depth: 0
8989
persist-credentials: false
9090

9191
- name: Check out numcodecs
92-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
92+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
9393
with:
9494
repository: zarr-developers/numcodecs
9595
fetch-depth: 0

.github/workflows/gpu_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python-version: ['3.12']
3535

3636
steps:
37-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
37+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3838
with:
3939
fetch-depth: 0 # grab all branches and tags
4040
persist-credentials: false

.github/workflows/hypothesis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
dependency-set: ["optional"]
4040

4141
steps:
42-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
42+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4343
with:
4444
persist-credentials: false
4545
- name: Set HYPOTHESIS_PROFILE based on trigger

.github/workflows/issue-metrics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
3434
3535
- name: Run issue-metrics tool
36-
uses: github-community-projects/issue-metrics@1e38d5e62363e14db8019ed7d106b9855bdba6cc # v4.2.7
36+
uses: github-community-projects/issue-metrics@44173f9e0a3b2144a777a10a340e4c09a25ac9f8 # v4.2.8
3737
env:
3838
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
SEARCH_QUERY: 'repo:zarr-developers/zarr-python is:issue created:${{ env.last_month }} -reason:"not planned"'

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Lint
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
22+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2323
with:
2424
persist-credentials: false
2525
- name: Set up Python

0 commit comments

Comments
 (0)