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.
New packages: py-regionmask and py-pyogrio (spack#46209)
* Add py-geopandas versions 1.0.0 and 1.0.1, update dependencies * New package py-pyogrio - dependency of newer py-geopandas * New package py-regionmask - needs py-geopandas
- Loading branch information
Showing
3 changed files
with
81 additions
and
8 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 |
---|---|---|
|
@@ -22,6 +22,8 @@ class PyGeopandas(PythonPackage): | |
license("BSD-3-Clause") | ||
|
||
version("master", branch="master") | ||
version("1.0.1", sha256="b8bf70a5534588205b7a56646e2082fb1de9a03599651b3d80c99ea4c2ca08ab") | ||
version("1.0.0", sha256="386d42c028047e2b0f09191d7859268304761c4711a247173a88891b6161f711") | ||
version("0.14.3", sha256="748af035d4a068a4ae00cab384acb61d387685c833b0022e0729aa45216b23ac") | ||
version("0.11.1", sha256="f0f0c8d0423d30cf81de2056d853145c4362739350a7f8f2d72cc7409ef1eca1") | ||
version("0.11.0", sha256="562fe7dc19a6e0f61532d654c4752f7bf46e0714990c5844fe3de3f9c99cb873") | ||
|
@@ -42,21 +44,27 @@ class PyGeopandas(PythonPackage): | |
depends_on("[email protected]:", type=("build", "run"), when="@0.14:") | ||
depends_on("py-setuptools", type="build") | ||
depends_on("[email protected]:", type="build", when="@0.14:") | ||
depends_on("py-numpy", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14.4:") | ||
# Only for versions 0.x.y - replaced by py-pyogrio | ||
depends_on("py-fiona", type=("build", "run"), when="@:0.99") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.9:0.99") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14:0.99") | ||
# Only for versions 1.x.y - replaces py-fiona | ||
depends_on("[email protected]:", type=("build", "run"), when="@1:") | ||
depends_on("py-packaging", type=("build", "run"), when="@0.11:") | ||
depends_on("py-pandas", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.6:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.9:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.10:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.11:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14:") | ||
depends_on("py-shapely@:1", type=("build", "run")) | ||
depends_on("[email protected]:1", type=("build", "run"), when="@0.9:0.10") | ||
depends_on("[email protected]:1", type=("build", "run"), when="@0.11:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14:") | ||
depends_on("py-fiona", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.9:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14:") | ||
depends_on("py-pyproj", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.7:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.11:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14:") | ||
depends_on("py-packaging", type=("build", "run"), when="@0.11:") | ||
depends_on("py-shapely@:1", type=("build", "run"), when="@:0.99") | ||
depends_on("[email protected]:1", type=("build", "run"), when="@0.9:0.10") | ||
depends_on("[email protected]:1", type=("build", "run"), when="@0.11:0.99") | ||
depends_on("[email protected]:", type=("build", "run"), when="@0.14:") | ||
depends_on("[email protected]:", type=("build", "run"), when="@1:") |
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,30 @@ | ||
# 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) | ||
|
||
from spack.package import * | ||
|
||
|
||
class PyPyogrio(PythonPackage): | ||
"""Vectorized spatial vector file format I/O using GDAL/OGR""" | ||
|
||
homepage = "https://pypi.org/project/pyogrio" | ||
pypi = "pyogrio/pyogrio-0.9.0.tar.gz" | ||
git = "https://github.com/geopandas/pyogrio.git" | ||
|
||
maintainers("climbfuji") | ||
|
||
license("MIT", checked_by="climbfuji") | ||
|
||
version("0.9.0", sha256="6a6fa2e8cf95b3d4a7c0fac48bce6e5037579e28d3eb33b53349d6e11f15e5a8") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type="build") | ||
depends_on("[email protected] +toml", type="build") | ||
# this is an implicit dependency already listed in py-versioneer, not needed | ||
# depends_on("py-tomli", when="^python@:3.10", type="build") | ||
|
||
depends_on("py-certifi", type=("build", "run")) | ||
depends_on("py-numpy", type=("build", "run")) | ||
depends_on("py-packaging", 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# 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) | ||
|
||
from spack.package import * | ||
|
||
|
||
class PyRegionmask(PythonPackage): | ||
"""Create masks of geospatial regions for arbitrary grids""" | ||
|
||
homepage = "https://pypi.org/project/regionmask" | ||
pypi = "regionmask/regionmask-0.12.1.tar.gz" | ||
git = "https://github.com/regionmask/regionmask.git" | ||
|
||
maintainers("climbfuji") | ||
|
||
license("MIT", checked_by="climbfuji") | ||
|
||
version("0.12.1", sha256="7ef1e70c6ebab7bfc6a80e13f6fe771945b8b6a31b7f8980fc88c8b8505bb854") | ||
|
||
depends_on("py-setuptools@42:", type="build") | ||
depends_on("py-setuptools-scm@7:", type="build") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:", type=("build", "run")) | ||
|
||
# "Optional" dependencies for plotting, but that's what this package is really useful for | ||
depends_on("[email protected]:", type="run") | ||
depends_on("[email protected]:", type="run") |