From 3a7cc1c0d4483d5d478ac59c4317bc74fc02f2d3 Mon Sep 17 00:00:00 2001 From: Joe Zuntz Date: Thu, 28 Nov 2024 09:36:39 +0000 Subject: [PATCH] allow numpy v2 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c2020f38..555a34fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pyyaml future emcee -numpy < 2 +numpy scipy matplotlib pybind11 diff --git a/setup.py b/setup.py index 1cecd29e..f7ec4f97 100644 --- a/setup.py +++ b/setup.py @@ -182,7 +182,7 @@ def run(self): requirements = [ "pyyaml", "emcee", - "numpy<2", + "numpy", "scipy", "matplotlib", "pybind11",