From 67c9860e913db6ef6cb0c23e1cc8e98555bd8a2b Mon Sep 17 00:00:00 2001 From: Kathleen Labrie Date: Thu, 8 Aug 2024 13:19:11 -1000 Subject: [PATCH] numpy<2 was missing from the setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7b9ecb5a0..2b618d3b0 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ 'jinja2>=3.0', 'jsonschema>=3.0', 'matplotlib>=3.1', - 'numpy>=1.17', + 'numpy>=1.17,<2', 'psutil>=5.6', 'pyerfa>=1.7', 'python-dateutil>=2.5.3',