Skip to content

Commit 5521052

Browse files
authored
Merge branch 'main' into rel-note-link
2 parents 82e588f + aa844a3 commit 5521052

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ gpu = [
7272
# Development extras
7373
test = [
7474
"coverage",
75-
"pytest",
75+
# Pin possibly due to https://github.com/pytest-dev/pytest-cov/issues/693
76+
"pytest<8.4",
7677
"pytest-asyncio",
7778
"pytest-cov",
7879
"pytest-accept",
@@ -209,7 +210,6 @@ dependencies = [
209210
'packaging @ git+https://github.com/pypa/packaging',
210211
'numpy', # from scientific-python-nightly-wheels
211212
'numcodecs @ git+https://github.com/zarr-developers/numcodecs',
212-
'fsspec @ git+https://github.com/fsspec/filesystem_spec',
213213
's3fs @ git+https://github.com/fsspec/s3fs',
214214
'universal_pathlib @ git+https://github.com/fsspec/universal_pathlib',
215215
'typing_extensions @ git+https://github.com/python/typing_extensions',

tests/test_metadata/test_consolidated.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ async def test_use_consolidated_for_children_members(
618618
expected = ["b", "b/c"]
619619
assert result == expected
620620

621+
621622
@pytest.mark.parametrize("fill_value", [np.nan, np.inf, -np.inf])
622623
async def test_consolidated_metadata_encodes_special_chars(
623624
memory_store: Store, zarr_format: ZarrFormat, fill_value: float

0 commit comments

Comments
 (0)