Skip to content

Commit 29cf526

Browse files
authored
Merge branch 'main' into deterministic-chunk-padding
2 parents 39a3540 + 0c895d1 commit 29cf526

35 files changed

+438
-64
lines changed

.github/labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- needs release notes:
1+
needs release notes:
22
- all:
33
- changed-files:
4-
- any-glob-to-any-file: 'changes/*.rst'
4+
- any-glob-to-any-file: '!changes/*.rst'

.github/workflows/gpu_test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,9 @@ jobs:
6464
- name: Run Tests
6565
run: |
6666
hatch env run --env gputest.py${{ matrix.python-version }}-${{ matrix.numpy-version }}-${{ matrix.dependency-set }} run-coverage
67+
68+
- name: Upload coverage
69+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
70+
with:
71+
token: ${{ secrets.CODECOV_TOKEN }}
72+
verbose: true # optional (default = false)

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
name: releases
5757
path: dist
58-
- uses: pypa/[email protected].3
58+
- uses: pypa/[email protected].4
5959
with:
6060
user: __token__
6161
password: ${{ secrets.pypi_password }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ src/zarr/_version.py
8383
data/*
8484
src/fixture/
8585
fixture/
86+
junit.xml
8687

8788
.DS_Store
8889
tests/.hypothesis
File renamed without changes.

changes/2693.bugfix.1.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Match the errors raised by read only stores in StoreTests.

changes/2693.bugfix.2.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Use stdout rather than stderr as the default stream for LoggingStore.

changes/2693.bugfix.3.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ensure that ZipStore is open before getting or setting any values.

changes/2693.bugfix.4.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update equality for LoggingStore and WrapperStore such that 'other' must also be a LoggingStore or WrapperStore respectively, rather than only checking the types of the stores they wrap.

changes/2693.feature.1.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Implemented open() for LoggingStore.

0 commit comments

Comments
 (0)