From e124c8481966e1457753d536e17d1306a981cb74 Mon Sep 17 00:00:00 2001 From: Kenneth Lyons Date: Thu, 19 Dec 2024 15:08:34 -0800 Subject: [PATCH] Limit numpy version < 2 Waiting on simupy update and release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9cf809c..1f4cf19 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ license="NASA Open Source Agreement Version 1.3", python_requires=">=3", install_requires=[ - "numpy>=1.11.3", + "numpy>=1.11.3,<2", "scipy>=0.18.1", "simupy>=1.1.2", "pyerfa",