Skip to content

Commit 424b8f6

Browse files
authored
Merge branch 'main' into PTC-W0015
2 parents 2e60dcd + 8c7c043 commit 424b8f6

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,6 @@ jobs:
102102
103103
- uses: codecov/codecov-action@v5
104104
with:
105+
fail_ci_if_error: true
105106
token: ${{ secrets.CODECOV_TOKEN }}
106107
verbose: true

.github/workflows/wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
submodules: true
2828

29-
- uses: pypa/cibuildwheel@v2.21.3
29+
- uses: pypa/cibuildwheel@v2.22.0
3030

3131
- uses: actions/upload-artifact@v4
3232
with:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
- id: debug-statements
1616

1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: v0.7.4
18+
rev: v0.8.0
1919
hooks:
2020
- id: ruff
2121
args: ["--fix", "--show-fixes"]

numcodecs/zarr3.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -355,25 +355,25 @@ def evolve_from_array_spec(self, array_spec: ArraySpec) -> AsType:
355355
ZFPY = _add_docstring(_make_array_bytes_codec("zfpy", "ZFPY"), "numcodecs.zfpy.ZFPY")
356356

357357
__all__ = [
358-
"Blosc",
359-
"LZ4",
360-
"Zstd",
361-
"Zlib",
362-
"GZip",
363358
"BZ2",
364-
"LZMA",
365-
"Shuffle",
366-
"Delta",
367-
"BitRound",
368-
"FixedScaleOffset",
369-
"Quantize",
370-
"PackBits",
371-
"AsType",
372359
"CRC32",
373360
"CRC32C",
361+
"LZ4",
362+
"LZMA",
363+
"ZFPY",
374364
"Adler32",
365+
"AsType",
366+
"BitRound",
367+
"Blosc",
368+
"Delta",
369+
"FixedScaleOffset",
375370
"Fletcher32",
371+
"GZip",
376372
"JenkinsLookup3",
377373
"PCodec",
378-
"ZFPY",
374+
"PackBits",
375+
"Quantize",
376+
"Shuffle",
377+
"Zlib",
378+
"Zstd",
379379
]

0 commit comments

Comments
 (0)