Skip to content

Commit a767c95

Browse files
committed
fix pre-commit
1 parent 76b5f3f commit a767c95

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repos:
3434
- numpy==2.1 # until https://github.com/numpy/numpy/issues/28034 is resolved
3535
- typing_extensions
3636
- universal-pathlib
37-
- obstore==0.4.0
37+
- obstore==0.5.1
3838
# Tests
3939
- pytest
4040
- repo: https://github.com/scientific-python/cookie

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ keywords = ["Python", "compressed", "ndimensional-arrays", "zarr"]
6464
# User extras
6565
remote = [
6666
"fsspec>=2023.10.0",
67-
"obstore==0.5.0",
67+
"obstore==0.5.1",
6868
]
6969
gpu = [
7070
"cupy-cuda12x",

src/zarr/storage/_obstore.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
Store,
1515
SuffixByteRequest,
1616
)
17-
from zarr.core.buffer import Buffer
1817
from zarr.core.buffer.core import BufferPrototype
1918
from zarr.core.config import config
2019

@@ -25,7 +24,7 @@
2524
from obstore import ListResult, ListStream, ObjectMeta, OffsetRange, SuffixRange
2625
from obstore.store import ObjectStore as _UpstreamObjectStore
2726

28-
from zarr.core.buffer import BufferPrototype
27+
from zarr.core.buffer import Buffer, BufferPrototype
2928
from zarr.core.common import BytesLike
3029

3130
__all__ = ["ObjectStore"]

0 commit comments

Comments
 (0)