Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 29, 2024
1 parent 6cbf0fb commit 5717f4b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ authors = [
{name = "Pangeo developers", email = "[email protected]"},
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = [
"version",
]
Expand Down
1 change: 1 addition & 0 deletions rechunker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Top-level package for Zarr Rechunker."""

try:
from ._version import __version__ # type: ignore
except ImportError:
Expand Down
1 change: 1 addition & 0 deletions rechunker/algorithm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Core rechunking algorithm stuff."""

import logging
import warnings
from math import ceil, floor, prod
Expand Down
1 change: 1 addition & 0 deletions rechunker/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""User-facing functions."""

import html
import textwrap
from collections import defaultdict
Expand Down
1 change: 1 addition & 0 deletions rechunker/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Types definitions used by executors."""

from dataclasses import dataclass
from typing import (
Any,
Expand Down

0 comments on commit 5717f4b

Please sign in to comment.