From cb7bf43495c720067b483a7c8e03c62f3e22cf8f Mon Sep 17 00:00:00 2001 From: mferrera Date: Fri, 25 Aug 2023 12:20:31 +0200 Subject: [PATCH] Pin numpy < 2 numpy 2.0 is coming in December 2023 or January 2024 and its developers have recommended pinning it to test against release candidates. This pin will be enforced elsewhere within Komodo. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 14ae542f..35c0d1da 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ REQUIREMENTS = [ "matplotlib", - "numpy", + "numpy<2", "openpyxl", "pandas", "scipy",