From 30a326af6815d575bdc8a547175491a6334cd10e Mon Sep 17 00:00:00 2001 From: Benjamin Rodenberg Date: Wed, 12 Mar 2025 16:34:50 +0100 Subject: [PATCH] Restrict to mpi4py<4 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 126183e..c8baa2a 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ author_email='info@precice.org', license='LGPL-3.0', packages=['fenicsxprecice'], - install_requires=['pyprecice~=3.0', 'scipy<1.15.0', 'numpy>=1.13.3', 'mpi4py'], + install_requires=['pyprecice~=3.0', 'scipy<1.15.0', 'numpy>=1.13.3', 'mpi4py<4'], tests_require=['sympy'], test_suite='tests', zip_safe=False)