From 7c2408e01c263b016c5736fa171837ae61040cd9 Mon Sep 17 00:00:00 2001 From: Hiran Wijesinghe Date: Mon, 17 Jun 2024 13:09:53 -0400 Subject: [PATCH] pin numpy <2.0.0 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ff83dd0ee..f4fa5c9f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,7 +71,7 @@ all = [ "lz4", "msgpack >=1.0.0", "ndindex", - "numpy", + "numpy <2.0.0", "openpyxl", "orjson", "packaging", @@ -100,7 +100,7 @@ all = [ # These are needed by the client and server to transmit/receive arrays. array = [ "dask[array]", - "numpy", + "numpy <2.0.0", ] # This is the "kichen sink" fully-featured client dependency set. client = [ @@ -116,7 +116,7 @@ client = [ "lz4", "msgpack >=1.0.0", "ndindex", - "numpy", + "numpy <2.0.0", "orjson", "pandas", "pyarrow", @@ -246,7 +246,7 @@ server = [ "lz4", "msgpack >=1.0.0", "ndindex", - "numpy", + "numpy <2.0.0", "openpyxl", "orjson", "packaging",