From f1f1d7fff492ffc7d73f02b6f7e5fb495b8c0c79 Mon Sep 17 00:00:00 2001 From: Isaac To Date: Mon, 17 Nov 2025 14:45:01 -0800 Subject: [PATCH 1/2] chore: set `dandischema` dependency to `0.12.0` and beyond This allows syncing of `dandischema` version with `dandi-archive` to resolve the `dandischema` versioning issue stated in https://github.com/dandi/dandi-schema/pull/344 as part of the effort to address https://github.com/dandi/dandi-schema/issues/299 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 92a35c9d3..29b84f634 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dependencies = [ # >=8.2.0: https://github.com/pallets/click/issues/2911 "click >= 7.1, <8.2.0", "click-didyoumean", - "dandischema >= 0.11.1, < 0.12.0", + "dandischema >= 0.12.0, < 0.13.0", "etelemetry >= 0.2.2", # For pydantic to be able to use type annotations like `X | None` "eval_type_backport; python_version < '3.10'", From f81c32e2118449d17647ab0d8dfe01244724ae98 Mon Sep 17 00:00:00 2001 From: Isaac To Date: Thu, 20 Nov 2025 08:58:23 -0800 Subject: [PATCH 2/2] style: use compatible release expression in `dandischema` dependency requirement Co-authored-by: Yaroslav Halchenko --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 29b84f634..d44de8dd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dependencies = [ # >=8.2.0: https://github.com/pallets/click/issues/2911 "click >= 7.1, <8.2.0", "click-didyoumean", - "dandischema >= 0.12.0, < 0.13.0", + "dandischema ~= 0.12.0", "etelemetry >= 0.2.2", # For pydantic to be able to use type annotations like `X | None` "eval_type_backport; python_version < '3.10'",