Skip to content

Commit c727e3f

Browse files
authored
Merge branch 'main' into endian-roundtrip
2 parents 08e8ec1 + 6c04c82 commit c727e3f

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

changes/3425.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix ChunkGrid definition (broken in 3.1.2)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ testpaths = ["tests", "docs/user-guide"]
379379
log_cli_level = "INFO"
380380
xfail_strict = true
381381
asyncio_mode = "auto"
382+
asyncio_default_fixture_loop_scope = "function"
382383
doctest_optionflags = [
383384
"NORMALIZE_WHITESPACE",
384385
"ELLIPSIS",

src/zarr/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
BytesLike = bytes | bytearray | memoryview
3939
ShapeLike = Iterable[int] | int
4040
# For backwards compatibility
41-
ChunkCoords: tuple[int, ...]
41+
ChunkCoords = tuple[int, ...]
4242
ZarrFormat = Literal[2, 3]
4343
NodeType = Literal["array", "group"]
4444
JSON = str | int | float | Mapping[str, "JSON"] | Sequence["JSON"] | None

0 commit comments

Comments
 (0)