Skip to content

Commit 4dffea5

Browse files
committed
Don't exact pin
1 parent 0f1092a commit 4dffea5

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
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.5.1
37+
- obstore>=0.5.1
3838
# Tests
3939
- pytest
4040
- repo: https://github.com/scientific-python/cookie

pyproject.toml

Lines changed: 10 additions & 2 deletions
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.1",
67+
"obstore>=0.5.1",
6868
]
6969
gpu = [
7070
"cupy-cuda12x",
@@ -115,6 +115,12 @@ Discussions = "https://github.com/zarr-developers/zarr-python/discussions"
115115
Documentation = "https://zarr.readthedocs.io/"
116116
Homepage = "https://github.com/zarr-developers/zarr-python"
117117

118+
[dependency-groups]
119+
dev = [
120+
"ipykernel>=6.29.5",
121+
"pip>=25.0.1",
122+
]
123+
118124
[tool.coverage.report]
119125
exclude_lines = [
120126
"pragma: no cover",
@@ -130,7 +136,9 @@ omit = [
130136

131137
[tool.hatch]
132138
version.source = "vcs"
133-
build.hooks.vcs.version-file = "src/zarr/_version.py"
139+
140+
[tool.hatch.build]
141+
hooks.vcs.version-file = "src/zarr/_version.py"
134142

135143
[tool.hatch.envs.test]
136144
dependencies = [

0 commit comments

Comments
 (0)