Skip to content

Commit 7b8d75e

Browse files
committed
Fix dependencies
1 parent af61e20 commit 7b8d75e

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

Diff for: pyproject.toml

+7-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build-backend = "setuptools.build_meta"
33
requires = ["setuptools>=64", "setuptools_scm>=8"]
44

55
[project]
6-
authors = [{email = "[email protected]", name = "HiP-CT Project"}]
6+
authors = [{ email = "[email protected]", name = "HiP-CT Project" }]
77
classifiers = [
88
"Operating System :: POSIX",
99
"Programming Language :: Python :: 3",
@@ -16,16 +16,16 @@ dependencies = [
1616
"joblib==1.4.2",
1717
"loguru==0.7.3",
1818
"numpy==2.2.1",
19-
"ome-zarr-models",
20-
"pydantic-zarr>=0.7.0",
19+
"ome-zarr-models@git+https://github.com/dstansby/ome-zarr-models-py@f20e6c08c8ed3bef4e88ec6009d370db9d0530b4",
20+
"pydantic-zarr==0.7.0",
2121
"scikit-image==0.25.0",
2222
"zarr==2.18.4",
2323
]
2424
description = "Convert stacks of images to chunked datasets"
2525
dynamic = ["version"]
2626
keywords = []
2727
name = "stack_to_chunk"
28-
optional-dependencies = {dev = [
28+
optional-dependencies = { dev = [
2929
"mypy",
3030
"pre-commit",
3131
"tox>=4",
@@ -37,14 +37,14 @@ optional-dependencies = {dev = [
3737
"sphinx-autoapi",
3838
"sphinx-gallery",
3939
"tifffile",
40-
]}
40+
] }
4141
readme = "README.md"
4242
requires-python = ">=3.11"
4343
license.file = "LICENCE.md"
4444
urls.homepage = "https://github.com/HiPCTProject/stack-to-chunk"
4545

4646
[tool.coverage]
47-
run = {branch = true, parallel = true, source = ["stack_to_chunk"]}
47+
run = { branch = true, parallel = true, source = ["stack_to_chunk"] }
4848
paths.source = ["src"]
4949

5050
[tool.pytest.ini_options]
@@ -62,12 +62,4 @@ overrides."project.classifiers".inline_arrays = false
6262
overrides."tool.coverage.paths.source".inline_arrays = false
6363

6464
[tool.uv]
65-
dev-dependencies = [
66-
"ome-zarr-models@git+https://github.com/dstansby/ome-zarr-models-py@f20e6c08c8ed3bef4e88ec6009d370db9d0530b4",
67-
"pre-commit>=3.8.0",
68-
"pytest-cov>=5.0.0",
69-
"pytest>=8.3.2",
70-
]
71-
72-
[tool.uv.sources]
73-
ome-zarr-models = {git = "https://github.com/dstansby/ome-zarr-models-py", rev = "f20e6c08c8ed3bef4e88ec6009d370db9d0530b4"}
65+
dev-dependencies = ["pre-commit>=3.8.0", "pytest-cov>=5.0.0", "pytest>=8.3.2"]

0 commit comments

Comments
 (0)