From 4e436ad1a1c158b3ecc74a77a8fe2954224c4156 Mon Sep 17 00:00:00 2001 From: Albert Villanova del Moral <8515462+albertvillanova@users.noreply.github.com> Date: Tue, 20 Aug 2024 10:42:04 +0200 Subject: [PATCH] Temporarily pin numpy<2.1 to fix CI --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c45d210b8b4..2077c0ee3d4 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,7 @@ # For file locking "filelock", # We use numpy>=1.17 to have np.random.Generator (Dataset shuffling) - "numpy>=1.17", + "numpy>=1.17,<2.1", # Temporarily pin <2.1 (see GH-7111) # Backend and serialization. # Minimum 15.0.0 to be able to cast dictionary types to their underlying types "pyarrow>=15.0.0",