diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 21c9c0d9..0797afc6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,7 +15,7 @@ repos: - id: debug-statements - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.4 + rev: v0.8.0 hooks: - id: ruff args: ["--fix", "--show-fixes"] diff --git a/numcodecs/zarr3.py b/numcodecs/zarr3.py index fb579839..c4c45f1c 100644 --- a/numcodecs/zarr3.py +++ b/numcodecs/zarr3.py @@ -355,25 +355,25 @@ def evolve_from_array_spec(self, array_spec: ArraySpec) -> AsType: ZFPY = _add_docstring(_make_array_bytes_codec("zfpy", "ZFPY"), "numcodecs.zfpy.ZFPY") __all__ = [ - "Blosc", - "LZ4", - "Zstd", - "Zlib", - "GZip", "BZ2", - "LZMA", - "Shuffle", - "Delta", - "BitRound", - "FixedScaleOffset", - "Quantize", - "PackBits", - "AsType", "CRC32", "CRC32C", + "LZ4", + "LZMA", + "ZFPY", "Adler32", + "AsType", + "BitRound", + "Blosc", + "Delta", + "FixedScaleOffset", "Fletcher32", + "GZip", "JenkinsLookup3", "PCodec", - "ZFPY", + "PackBits", + "Quantize", + "Shuffle", + "Zlib", + "Zstd", ]