From 2b772134e4024e2249fa7613230affeccbd28d16 Mon Sep 17 00:00:00 2001 From: Markus Heikkinen Date: Wed, 30 Aug 2023 08:19:31 +0200 Subject: [PATCH] Fix missing requirements * Add numpy to requirements --- pyproject.toml | 1 + requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9751de7..f249cc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,7 @@ dependencies = [ "pycapnp", "pytest_asyncio", "typing_extensions", + "numpy" ] # Temporary solution until pycapnp has release its new version diff --git a/requirements.txt b/requirements.txt index 63ccab4..bcbd05e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ hatch pycapnp -hypothesis \ No newline at end of file +hypothesis +numpy