From b814305a57a7adc75b9b17ded241330abd6906cf Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Wed, 10 May 2023 14:43:34 +0200 Subject: [PATCH] Add Cython as dependency required during installation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 165469d0..c9341af5 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'],