From 07a068e97f23da0654be2f6ec445f40355af93a0 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Tue, 9 Jan 2024 16:55:12 +0100 Subject: [PATCH] GH-39537: [Packaging][Python] Add a numpy<2 pin to the install requirements for the 15.x release branch --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index b1c825d84d5..51eb40af088 100755 --- a/python/setup.py +++ b/python/setup.py @@ -449,7 +449,7 @@ def has_ext_modules(foo): install_requires = ( - 'numpy >= 1.16.6', + 'numpy >= 1.16.6, <2', )