From 01515ab7c94ee18fd412b4d83900c9eb7e5e88be Mon Sep 17 00:00:00 2001 From: Samuel Burbulla <samuel.burbulla@mathematik.uni-stuttgart.de> Date: Thu, 28 Jan 2021 15:37:02 +0100 Subject: [PATCH] Add cmake>=3.13 and mpi4py to Python Requires. Update dependencies. --- bin/dunepackaging.py | 2 +- dune.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dunepackaging.py b/bin/dunepackaging.py index cf28808b0..51f9c3709 100755 --- a/bin/dunepackaging.py +++ b/bin/dunepackaging.py @@ -92,7 +92,7 @@ def main(argv): # Generate pyproject.toml print("Generate pyproject.toml") f = open("pyproject.toml", "w") - requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "requests"] + requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "requests", "portalocker", "numpy"] requires += data.asPythonRequirementString(data.depends + data.python_requires) f.write("[build-system]\n") f.write("requires = "+requires.__str__()+"\n") diff --git a/dune.module b/dune.module index 9e2aaa950..d1e8050d4 100644 --- a/dune.module +++ b/dune.module @@ -4,5 +4,5 @@ Author: The Dune Core developers Maintainer: dune-devel@lists.dune-project.org Description: Basis infrastructure for all Dune modules URL: https://gitlab.dune-project.org/core/dune-common -Python-Requires: portalocker numpy wheel +Python-Requires: portalocker numpy wheel mpi4py Whitespace-Hook: Yes -- GitLab