-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Require setuptools>=61. Will ensure use of pyproject.toml. * Simplify setup.py w.r.t noisy warning (always shown when building with spack).
- Loading branch information
1 parent
23a5645
commit 88f388c
Showing
3 changed files
with
6 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[build-system] | ||
# PEP 518 - minimum build system requirements | ||
requires = ["setuptools", "wheel", "Cython>=0.29", "packaging", "pip>=19.0.0", "numpy", "mpi4py", "pkgconfig"] | ||
requires = ["setuptools>=61", "wheel", "Cython>=0.29", "packaging", "pip>=19.0.0", "numpy", "mpi4py", "pkgconfig"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other | ||
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other | ||
# Spack Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
@@ -14,12 +14,12 @@ class PyPyprecice(PythonPackage): | |
|
||
homepage = "https://precice.org" | ||
git = "https://github.com/precice/python-bindings.git" | ||
url = "https://github.com/precice/python-bindings/archive/v2.4.0.0.tar.gz" | ||
maintainers = ["ajaust", "BenjaminRodenberg", "IshaanDesai"] | ||
url = "https://github.com/precice/python-bindings/archive/v2.5.0.1.tar.gz" | ||
maintainers("ajaust", "BenjaminRodenberg", "IshaanDesai") | ||
|
||
# Always prefer final version of release candidate | ||
version("develop", branch="develop") | ||
version("2.5.0.1", sha256="e2602f828d4f907ea93e34f7d4adb8db086044a75a446592a4099423d56ed62c") | ||
version("2.5.0.1", sha256="d7c666e6ebff9e007c3703d8e3c3fcdf0f45289e36c2c17223b3aedc3259ab6c") | ||
version("2.5.0.0", sha256="9f55a22594bb602cde8a5987217728569f16d9576ea53ed00497e9046a2e1794") | ||
version("2.4.0.0", sha256="e80d16417b8ce1fdac80c988cb18ae1e16f785c5eb1035934d8b37ac18945242") | ||
version("2.3.0.1", sha256="ed4e48729b662680beaa4ee2a9aff724a79e760534c6c58181be739988da2789") | ||
|
@@ -50,7 +50,7 @@ class PyPyprecice(PythonPackage): | |
depends_on("precice@" + ver, when="@" + ver) | ||
|
||
depends_on("python@3:", type=("build", "link", "run")) | ||
depends_on("py-setuptools", type="build") | ||
depends_on("py-setuptools@61:", type="build") | ||
depends_on("py-numpy", type=("build", "link", "run")) | ||
depends_on("py-mpi4py", type=("build", "run")) | ||
depends_on("[email protected]:", type="build") | ||
|