From 7cac1c874b9d7fe6c931aea17ac67e2a5e2fad10 Mon Sep 17 00:00:00 2001 From: Isaac To Date: Tue, 22 Oct 2024 13:30:35 -0700 Subject: [PATCH] chore: Change `linkml` dependency to a branch at a fork temporarily We need the approved changes at @candleindark's fork. This change in dependency should only last until https://github.com/linkml/linkml/pull/2363 is included in a new LinkML version. --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 61056f66..8b92c041 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", ] dependencies = [ - "linkml~=1.8", + "linkml @ git+https://github.com/candleindark/linkml.git@bundle-error", "pydantic~=2.7", "typer", ] @@ -43,6 +43,9 @@ pydantic2linkml = "pydantic2linkml.cli:app" [tool.hatch.version] path = "src/pydantic2linkml/__about__.py" +[tool.hatch.metadata] +allow-direct-references = true + [tool.hatch.envs.default] python = "3.9"