diff --git a/HISTORY.rst b/HISTORY.rst index 34c82f14..0fc54441 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,8 @@ History 0.3.8 (2024-09-29) ------------------ +* Update to NumPy 2.0.0 (:pr:`317`) +* Update to python-casacore 3.6.1 (:pr:`317`) * Test on Python 3.12 (:pr:`318`) * Deprecate Python 3.9 (:pr:`318`) * Fix nvcc compilation (:pr:`316`) diff --git a/setup.py b/setup.py index 7fef4284..09cd257a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ requirements = [ "appdirs >= 1.4.3", "decorator", - "numpy >= 1.14.0, != 1.15.3, < 2.0.0", + "numpy >= 2.0.0", "numba >= 0.53.1", "setuptools", ] @@ -22,7 +22,7 @@ "jax": ["jax >= 0.2.11", "jaxlib >= 0.1.65"], "scipy": ["scipy >= 1.4.0"], "astropy": ["astropy >= 4.0"], - "python-casacore": ["python-casacore >= 3.4.0, != 3.5.0"], + "python-casacore": ["python-casacore >= 3.6.1"], "ducc0": ["ducc0 >= 0.9.0"], "testing": ["pytest", "flaky"], }