From 23b57b942e439ca9eea73830f56ef1acae8554ec Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Tue, 30 Jul 2024 14:24:22 +0200 Subject: [PATCH] Restrict numpy to < 2.0.0 (#313) --- HISTORY.rst | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 7391afd2..c52bdf34 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,7 @@ History 0.3.7 (2024-05-23) ------------------ +* Restrict NumPy to less than 2.0.0 (:pr:`313`) * Fix bda overload to return an implementation (:pr:`307`) * Upgrade obsolete readthedocs configuration (:pr:`304`) diff --git a/setup.py b/setup.py index 73cd5db4..8866899f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ requirements = [ "appdirs >= 1.4.3", "decorator", - "numpy >= 1.14.0, != 1.15.3", + "numpy >= 1.14.0, != 1.15.3, < 2.0.0", "numba >= 0.53.1", ]