forked from spack/spack
-
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.
Merge pull request #489 from climbfuji/feature/upd_uxarray_ecmwf_pkgs…
…_from_spack_dev This PR cherry-picks two PRs that were merged into spack develop recently and that are needed for spack-stack-1.9.0: - py-uxarray: new package plus dependencies spack#47573 - Upgraded version specs for ECMWF packages: eckit, atlas, ectrans, fckit, fiat spack#47749
- Loading branch information
Showing
17 changed files
with
338 additions
and
13 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
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
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
24 changes: 24 additions & 0 deletions
24
var/spack/repos/builtin/packages/py-antimeridian/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 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 PyAntimeridian(PythonPackage): | ||
"""Fix shapes that cross the antimeridian.""" | ||
|
||
homepage = "https://antimeridian.readthedocs.io/" | ||
pypi = "antimeridian/antimeridian-0.3.11.tar.gz" | ||
git = "https://github.com/gadomski/antimeridian.git" | ||
|
||
license("Apache-2.0") | ||
|
||
version("0.3.11", sha256="fde0134e6799676ec68765d3e588f5f32cabd4041b1f969b923758d0a6cd0c7f") | ||
|
||
depends_on("python@3.10:", type=("build", "run")) | ||
depends_on("py-hatchling", type="build") | ||
|
||
depends_on("py-numpy@1.22.4:", type="run") | ||
depends_on("py-shapely@2:", type="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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 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 PyDaskExpr(PythonPackage): | ||
"""Dask DataFrames with query optimization.""" | ||
|
||
homepage = "https://github.com/dask/dask-expr" | ||
url = "https://github.com/dask/dask-expr/archive/refs/tags/v1.1.9.tar.gz" | ||
|
||
license("BSD-3-Clause") | ||
|
||
version("1.1.9", sha256="e5a1b82de1142c29fed899a80541a98ca5e12cb85ce9d86bc8ada204a22599d3") | ||
|
||
depends_on("python@3.10:", type=("build", "run")) | ||
depends_on("py-setuptools@62.6:", type="build") | ||
depends_on("py-versioneer@0.28+toml", type="build") | ||
|
||
# Can't do circular run-time dependencies yet? | ||
# depends_on("py-dask@2024.7.1", type="run") | ||
depends_on("py-pyarrow@7: +dataset", type="run") | ||
depends_on("py-pandas@2:", type="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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# 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 PyDatashader(PythonPackage): | ||
"""Datashader is a data rasterization pipeline for automating the process of creating | ||
meaningful representations of large amounts of data""" | ||
|
||
homepage = "https://datashader.org" | ||
pypi = "datashader/datashader-0.16.3.tar.gz" | ||
git = "https://github.com/holoviz/datashader.git" | ||
|
||
license("BSD-3-Clause", checked_by="climbfuji") | ||
|
||
version("0.16.3", sha256="9d0040c7887f7a5a5edd374c297402fd208a62bf6845e87631b54f03b9ae479d") | ||
|
||
# pyproject.toml | ||
depends_on("python@3.9:", type=("build", "run")) | ||
depends_on("py-pyct", type=("build", "run")) | ||
depends_on("py-hatchling", type="build") | ||
depends_on("py-hatch-vcs", type="build") | ||
depends_on("py-param", type=("build", "run")) | ||
|
||
depends_on("py-colorcet", type="run") | ||
depends_on("py-dask", type="run") | ||
depends_on("py-multipledispatch", type="run") | ||
depends_on("py-numba", type="run") | ||
depends_on("py-numpy", type="run") | ||
depends_on("py-packaging", type="run") | ||
depends_on("py-pandas", type="run") | ||
depends_on("py-pillow", type="run") | ||
depends_on("py-requests", type="run") | ||
depends_on("py-scipy", type="run") | ||
depends_on("py-toolz", type="run") | ||
depends_on("py-xarray", type="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,34 @@ | ||
# 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 PyGeoviews(PythonPackage): | ||
"""A Python library designed to make data analysis and visualization seamless and simple.""" | ||
|
||
homepage = "https://geoviews.org/" | ||
pypi = "geoviews/geoviews-1.13.0.tar.gz" | ||
git = "https://github.com/holoviz/geoviews.git" | ||
|
||
license("BSD-3-Clause", checked_by="climbfuji") | ||
|
||
version("1.13.0", sha256="7554a1e9114995acd243546fac6c6c7f157fc28529fde6ab236a72a6e77fe0bf") | ||
# version("1.12.0", sha256="e2cbef0605e8fd1529bc643a31aeb61997f8f93c9b41a5aff8b2b355a76fa789") | ||
|
||
depends_on("python@3.10:", type=("build", "run")) | ||
depends_on("py-hatchling", type="build") | ||
depends_on("py-hatch-vcs", type="build") | ||
depends_on("py-bokeh@3.5", type=("build", "run")) | ||
|
||
depends_on("py-cartopy@0.18:", type="run") | ||
depends_on("py-holoviews@1.16:", type="run") | ||
depends_on("py-numpy", type="run") | ||
depends_on("py-packaging", type="run") | ||
depends_on("py-panel@1:", type="run") | ||
depends_on("py-param", type="run") | ||
depends_on("py-pyproj", type="run") | ||
depends_on("py-shapely", type="run") | ||
depends_on("py-xyzservices", type="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,32 @@ | ||
# 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 PyHoloviews(PythonPackage): | ||
"""A Python library designed to make data analysis and visualization seamless and simple.""" | ||
|
||
homepage = "https://holoviews.org/" | ||
pypi = "holoviews/holoviews-1.19.1.tar.gz" | ||
git = "https://github.com/holoviz/holoviews.git" | ||
|
||
license("BSD-3-Clause", checked_by="climbfuji") | ||
|
||
version("1.19.1", sha256="b9e85e8c07275a456c0ef8d06bc157d02b37eff66fb3602aa12f5c86f084865c") | ||
# version("1.19.0", sha256="cab1522f75a9b46377f9364b675befd79812e220059714470a58e21475d531ba") | ||
|
||
depends_on("python@3.9:", type=("build", "run")) | ||
depends_on("py-hatchling", type="build") | ||
depends_on("py-hatch-vcs", type="build") | ||
|
||
depends_on("py-bokeh@3.1:", type="run") | ||
depends_on("py-colorcet", type="run") | ||
depends_on("py-numpy@1.21:", type="run") | ||
depends_on("py-packaging", type="run") | ||
depends_on("py-pandas@1.3:", type="run") | ||
depends_on("py-panel@1:", type="run") | ||
depends_on("py-param@2", type="run") | ||
depends_on("py-pyviz-comms@2.1:", type="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,31 @@ | ||
# 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 PyHvplot(PythonPackage): | ||
"""A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews.""" | ||
|
||
homepage = "https://hvplot.holoviz.org/" | ||
pypi = "hvplot/hvplot-1.19.1.tar.gz" | ||
git = "http://github.com/holoviz/hvplot.git" | ||
|
||
license("BSD-3-Clause", checked_by="climbfuji") | ||
|
||
version("0.11.1", sha256="989ed0389189adc47edcd2601d2eab18bf366e74b07f5e2873e021323c4a14bb") | ||
|
||
depends_on("python@3.9:", type=("build", "run")) | ||
depends_on("py-setuptools@30.3:", type="build") | ||
depends_on("py-setuptools-scm@6:", type="build") | ||
|
||
depends_on("py-bokeh@3.1:", type="run") | ||
depends_on("py-colorcet", type="run") | ||
depends_on("py-holoviews@1.19:", type="run") | ||
depends_on("py-numpy@1.21:", type="run") | ||
depends_on("py-packaging", type="run") | ||
depends_on("py-pandas@1.3:", type="run") | ||
depends_on("py-panel@1:", type="run") | ||
depends_on("py-param@1.12:2", type="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
31 changes: 31 additions & 0 deletions
31
var/spack/repos/builtin/packages/py-spatialpandas/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,31 @@ | ||
# 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 PySpatialpandas(PythonPackage): | ||
"""Pandas extension arrays for spatial/geometric operations.""" | ||
|
||
homepage = "https://holoviz.org/" | ||
pypi = "spatialpandas/spatialpandas-1.19.1.tar.gz" | ||
git = "https://github.com/holoviz/spatialpandas.git" | ||
|
||
license("BSD-2-Clause", checked_by="climbfuji") | ||
|
||
version("0.4.10", sha256="032e24ebb40f75c5c79cb79d7c281f2990e69ba382c0b24acb53da7bba60851c") | ||
|
||
depends_on("python@3.9:", type=("build", "run")) | ||
depends_on("py-hatchling", type="build") | ||
depends_on("py-hatch-vcs", type="build") | ||
depends_on("py-param", type="build") | ||
|
||
depends_on("py-dask", type="run") | ||
depends_on("py-fsspec@2022.8:", type="run") | ||
depends_on("py-numba", type="run") | ||
depends_on("py-packaging", type="run") | ||
depends_on("py-pandas", type="run") | ||
depends_on("py-pyarrow@10:", type="run") | ||
depends_on("py-retrying", type="run") |
Oops, something went wrong.