From 02d126ce2b5ca4eb4cb9e39e3c29588e6c5991a0 Mon Sep 17 00:00:00 2001 From: Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> Date: Mon, 18 Mar 2024 09:52:19 +0000 Subject: [PATCH] py-geopandas: add new version 0.14.3 (#43235) * py-geopandas: add new version * add when specification on setuptools requirement --- var/spack/repos/builtin/packages/py-geopandas/package.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/var/spack/repos/builtin/packages/py-geopandas/package.py b/var/spack/repos/builtin/packages/py-geopandas/package.py index 4b11243b27..be699da3f5 100644 --- a/var/spack/repos/builtin/packages/py-geopandas/package.py +++ b/var/spack/repos/builtin/packages/py-geopandas/package.py @@ -22,6 +22,7 @@ class PyGeopandas(PythonPackage): license("BSD-3-Clause") version("master", branch="master") + version("0.14.3", sha256="748af035d4a068a4ae00cab384acb61d387685c833b0022e0729aa45216b23ac") version("0.11.1", sha256="f0f0c8d0423d30cf81de2056d853145c4362739350a7f8f2d72cc7409ef1eca1") version("0.11.0", sha256="562fe7dc19a6e0f61532d654c4752f7bf46e0714990c5844fe3de3f9c99cb873") version("0.10.2", sha256="efbf47e70732e25c3727222019c92b39b2e0a66ebe4fe379fbe1aa43a2a871db") @@ -38,18 +39,24 @@ class PyGeopandas(PythonPackage): depends_on("python@3.6:", type=("build", "run"), when="@0.9:") depends_on("python@3.7:", type=("build", "run"), when="@0.10:") depends_on("python@3.8:", type=("build", "run"), when="@0.11:") + depends_on("python@3.9:", type=("build", "run"), when="@0.14:") depends_on("py-setuptools", type="build") + depends_on("py-setuptools@61.0.0:", type="build", when="@0.14:") depends_on("py-pandas", type=("build", "run")) depends_on("py-pandas@0.23.0:", type=("build", "run"), when="@0.6:") depends_on("py-pandas@0.24.0:", type=("build", "run"), when="@0.9:") depends_on("py-pandas@0.25.0:", type=("build", "run"), when="@0.10:") depends_on("py-pandas@1.0.0:", type=("build", "run"), when="@0.11:") + depends_on("py-pandas@1.4.0:", type=("build", "run"), when="@0.14:") depends_on("py-shapely@:1", type=("build", "run")) depends_on("py-shapely@1.6:1", type=("build", "run"), when="@0.9:0.10") depends_on("py-shapely@1.7:1", type=("build", "run"), when="@0.11:") + depends_on("py-shapely@1.8.0:", type=("build", "run"), when="@0.14:") depends_on("py-fiona", type=("build", "run")) depends_on("py-fiona@1.8:", type=("build", "run"), when="@0.9:") + depends_on("py-fiona@1.8.21:", type=("build", "run"), when="@0.14:") depends_on("py-pyproj", type=("build", "run")) depends_on("py-pyproj@2.2.0:", type=("build", "run"), when="@0.7:") depends_on("py-pyproj@2.6.1.post1:", type=("build", "run"), when="@0.11:") + depends_on("py-pyproj@3.3.0:", type=("build", "run"), when="@0.14:") depends_on("py-packaging", type=("build", "run"), when="@0.11:")