forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
py-yt: add 4.4.0 and dependencies (spack#47571)
* py-ewah-bool-utils: add new package * py-extension-helpers: add 1.2.0 * py-regions: add new package * py-erfa: add 2.0.1.5 * py-yt: add 4.4.0 * py-yt: respect build_jobs
- Loading branch information
Showing
5 changed files
with
203 additions
and
14 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
var/spack/repos/builtin/packages/py-ewah-bool-utils/package.py
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright Spack Project Developers. See COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack.package import * | ||
|
||
|
||
class PyEwahBoolUtils(PythonPackage): | ||
"""EWAH Bool Array utils for yt""" | ||
|
||
homepage = "https://github.com/yt-project/ewah_bool_utils" | ||
pypi = "ewah_bool_utils/ewah_bool_utils-1.2.2.tar.gz" | ||
|
||
license("BSD-3-Clause", checked_by="lgarrison") | ||
|
||
version("1.2.2", sha256="eb901f46caef189de3a0c1f5ca06287cfaba7976ddf76fa1c1f3bce1b60b7ac3") | ||
|
||
depends_on("python@3.9:", type=("build", "run")) | ||
|
||
depends_on("py-setuptools@61.2:", type="build") | ||
depends_on("py-cython@3.0:", type="build") | ||
depends_on("py-numpy@2.0.0:", type="build") | ||
|
||
depends_on("py-numpy@1.19.3:2", type=("build", "run")) |
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Copyright Spack Project Developers. See COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
from spack.package import * | ||
|
||
|
||
class PyRegions(PythonPackage): | ||
"""An Astropy coordinated package for region handling""" | ||
|
||
homepage = "https://github.com/astropy/regions" | ||
pypi = "regions/regions-0.10.tar.gz" | ||
|
||
license("BSD-3-Clause", checked_by="lgarrison") | ||
|
||
version("0.10", sha256="961c518ea044268de0003a17953de3d4984623e9d47ad5424c100f6967e69a81") | ||
|
||
variant("all", default=False, description="Install all optional dependencies") | ||
|
||
depends_on("c", type="build") | ||
|
||
depends_on("python@3.10:", type=("build", "run")) | ||
|
||
depends_on("py-setuptools@61.2:", type="build") | ||
depends_on("py-setuptools-scm@6.2:", type="build") | ||
depends_on("py-cython@3.0.0:3.0", type="build") | ||
depends_on("py-numpy@2.0.0rc1:", type="build") | ||
depends_on("py-extension-helpers@1", type="build") | ||
|
||
depends_on("py-numpy@1.23:", type=("build", "run")) | ||
depends_on("py-astropy@5.1:", type=("build", "run")) | ||
|
||
depends_on("py-matplotlib@3.5:", type=("build", "run"), when="+all") | ||
depends_on("py-shapely", type=("build", "run"), when="+all") |
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