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", ]