From 911f072e316da6abd83745fc13200ab79fc085cc Mon Sep 17 00:00:00 2001 From: elisalle Date: Thu, 18 Jul 2024 12:17:23 +0200 Subject: [PATCH] pin numpy to less than 2 --- CHANGES.rst | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 993d38f4..2e9ab648 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ Changelog of threedigrid-builder ------------------- - Create quarter administration. +- Pin NumPy to <2. 1.15.0 (2024-05-22) diff --git a/setup.py b/setup.py index a213682d..eba3d6f4 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def get_version(): install_requires = [ - "numpy>=1.15", + "numpy>=1.15, <2", "threedi-schema==0.222.*", "shapely>=2", "pyproj>=3",