From c4d97862ba6d11f7e5cd099b0ff9197992472344 Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Mon, 5 Feb 2024 12:17:14 +0100 Subject: [PATCH] Add Cython as dependency required during installation (#177) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dd16072a..a82e8569 100644 --- a/setup.py +++ b/setup.py @@ -148,7 +148,7 @@ def initialize_options(self): author_email='info@precice.org', license='LGPL-3.0', python_requires='>=3', - install_requires=['numpy', 'mpi4py'], + install_requires=['numpy', 'mpi4py', 'Cython'], # mpi4py is only needed, if preCICE was compiled with MPI # see https://github.com/precice/python-bindings/issues/8 packages=['precice'],