From 497a449c4d1be93d941ef8eb22f6c62ddb4262d3 Mon Sep 17 00:00:00 2001 From: Gregor Boehl Date: Mon, 17 Jun 2024 10:16:53 +0200 Subject: [PATCH] fix numpy until chaospy is fixed --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7645ad6e..f2899454 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ numba -numpy +numpy<=1.26.4 pandas pathos dill diff --git a/setup.py b/setup.py index 1f69cc5a..284ce11a 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ install_requires=[ "numba", "emcee", - "numpy", + "numpy<=1.26.4", "pandas", "pathos", "dill",