From d60b6659f59563368f0590c621d3788d7bc69554 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cl=C3=A9ment=20Jonglez?= <clement@jonglez.space>
Date: Sat, 18 May 2024 21:10:37 +0200
Subject: [PATCH] add numpy to dependencies in pyproject.toml

I had an error complaining that numpy was not found, and is needed for the helper functions which convert arrays.
---
 pyproject.toml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index fa32798..d48814c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -26,7 +26,8 @@ classifiers = [
 ]
 
 dependencies = [
-    'Jpype1'
+    'Jpype1',
+    'numpy'
 ]
 
 [project.urls]
-- 
GitLab