From aed96d0851a7160dd57a3c76f07aedca24c2ab80 Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Fri, 11 Oct 2024 15:20:28 +0100 Subject: [PATCH 1/2] Relax numpy constraint for compatibility with older libraries --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9127894b..66a462c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ classifiers = [ ] dependencies = [ "pydantic>=2.0.0", - "numpy~=2.0", + "numpy>=1.20", "pydantic_numpy>=6.0", "jsonschema", "typing_extensions", From 0a5563cfd4b09e9cbe6b9ee19d97e5ce3fc7cf42 Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Fri, 11 Oct 2024 15:46:19 +0100 Subject: [PATCH 2/2] Version bump for release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 66a462c7..4519bb36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labthings-fastapi" -version = "0.0.4" +version = "0.0.5" authors = [ { name="Richard Bowman", email="richard.bowman@cantab.net" }, ]