From 8e0dfa578fc41be31b381b546387ece938db589c Mon Sep 17 00:00:00 2001 From: Benjamin Rodenberg Date: Mon, 19 Aug 2024 18:02:39 +0200 Subject: [PATCH] Update setup.py (#175) * Fixes tests --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d63a54c4..1b277b9e 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,6 @@ author_email='info@precice.org', license='LGPL-3.0', packages=['fenicsprecice'], - install_requires=['pyprecice>=3.0.0.0', 'scipy', 'numpy>=1.13.3', 'mpi4py'], + install_requires=['pyprecice>=3.0.0.0', 'scipy', 'numpy>=1.13.3, <2', 'mpi4py'], test_suite='tests', zip_safe=False)