From 8abc931711077dd16e243158e48aa1dcc9ce7d85 Mon Sep 17 00:00:00 2001 From: Eivind Jahren Date: Thu, 17 Aug 2023 13:11:58 +0200 Subject: [PATCH] Bound numpy to less than 2.0 This is in accordance with https://github.com/numpy/numpy/issues/24300 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1dcec747bfe..65f80061c6c 100644 --- a/setup.py +++ b/setup.py @@ -126,7 +126,7 @@ def package_files(directory): "jinja2", "lark", "matplotlib", - "numpy", + "numpy<2", "packaging", "pandas", "pluggy",