From a02747db1c99f1306e224f177e325b1277bbd8bc Mon Sep 17 00:00:00 2001 From: Jonas Kittner Date: Tue, 22 Oct 2024 19:50:53 +0200 Subject: [PATCH] remove upper bound from numpy version --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index cd3b5576..5b16c7ed 100644 --- a/setup.py +++ b/setup.py @@ -18,9 +18,6 @@ numpy_constraints = ( ">=1.15", "!=1.17.0", - # TODO: drop this once all deps support numpy 2.0 - # see https://github.com/dask/crick/issues/53 - "<2", ) numpy_version = ",".join(numpy_constraints)