diff options
author | Dom Heinzeller <dom.heinzeller@icloud.com> | 2024-06-27 03:40:17 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 09:40:17 +0000 |
commit | eb7951818db05b778ff7fbab124c37c3c34131c2 (patch) | |
tree | bee70dd4ebaa4ecb0eb33e9ca6b9ae6d086c4039 | |
parent | 6959656d518a95a087dfae9988087a7e49fdfd05 (diff) | |
download | spack-eb7951818db05b778ff7fbab124c37c3c34131c2.tar.gz spack-eb7951818db05b778ff7fbab124c37c3c34131c2.tar.bz2 spack-eb7951818db05b778ff7fbab124c37c3c34131c2.tar.xz spack-eb7951818db05b778ff7fbab124c37c3c34131c2.zip |
py-poetry, py-numexpr, and py-metpy: correct dependencies (#44651)
4 files changed, 5 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-metpy/package.py b/var/spack/repos/builtin/packages/py-metpy/package.py index f6bd28c139..3be38a414c 100644 --- a/var/spack/repos/builtin/packages/py-metpy/package.py +++ b/var/spack/repos/builtin/packages/py-metpy/package.py @@ -30,7 +30,8 @@ class PyMetpy(PythonPackage): depends_on("py-matplotlib@2.1.0:", type=("build", "run")) depends_on("py-numpy@1.16.0:", type=("build", "run")) depends_on("py-pandas@0.24.0:", type=("build", "run")) - depends_on("py-pint@0.10.1:", type=("build", "run")) + # Unable to Find "pint.unit" -- Module Not Found Error with py-pint@0.20: + depends_on("py-pint@0.10.1:0.19", type=("build", "run")) depends_on("py-pooch@0.1:", type=("build", "run")) depends_on("py-pyproj@2.3.0:", type=("build", "run")) depends_on("py-scipy@1.0:", type=("build", "run")) diff --git a/var/spack/repos/builtin/packages/py-numexpr/package.py b/var/spack/repos/builtin/packages/py-numexpr/package.py index 0449f4b20f..0bf27310fd 100644 --- a/var/spack/repos/builtin/packages/py-numexpr/package.py +++ b/var/spack/repos/builtin/packages/py-numexpr/package.py @@ -31,7 +31,7 @@ class PyNumexpr(PythonPackage): depends_on("python@3.9:", when="@2.8.7:", type=("build", "run")) depends_on("py-setuptools", type="build") - depends_on("py-numpy@1.13.3:", type=("build", "run"), when="@2.8.3:") + depends_on("py-numpy@1.13.3:1.25", type=("build", "run"), when="@2.8.3:") # https://github.com/pydata/numexpr/issues/397 depends_on("py-numpy@1.7:1.22", type=("build", "run"), when="@:2.7") diff --git a/var/spack/repos/builtin/packages/py-pint/package.py b/var/spack/repos/builtin/packages/py-pint/package.py index cbd8f48575..3d5aa15591 100644 --- a/var/spack/repos/builtin/packages/py-pint/package.py +++ b/var/spack/repos/builtin/packages/py-pint/package.py @@ -21,6 +21,7 @@ class PyPint(PythonPackage): version("0.22", sha256="2d139f6abbcf3016cad7d3cec05707fe908ac4f99cf59aedfd6ee667b7a64433") version("0.21.1", sha256="5d5b6b518d0c5a7ab03a776175db500f1ed1523ee75fb7fafe38af8149431c8d") version("0.20.1", sha256="387cf04078dc7dfe4a708033baad54ab61d82ab06c4ee3d4922b1e45d5626067") + version("0.19.2", sha256="e1d4989ff510b378dad64f91711e7bdabe5ca78d75b06a18569ac454678c4baf") version("0.18", sha256="8c4bce884c269051feb7abc69dbfd18403c0c764abc83da132e8a7222f8ba801") version("0.17", sha256="f4d0caa713239e6847a7c6eefe2427358566451fe56497d533f21fb590a3f313") version("0.11", sha256="308f1070500e102f83b6adfca6db53debfce2ffc5d3cbe3f6c367da359b5cf4d") diff --git a/var/spack/repos/builtin/packages/py-poetry/package.py b/var/spack/repos/builtin/packages/py-poetry/package.py index 68b2ae95e4..b3e005e9ba 100644 --- a/var/spack/repos/builtin/packages/py-poetry/package.py +++ b/var/spack/repos/builtin/packages/py-poetry/package.py @@ -71,7 +71,7 @@ class PyPoetry(PythonPackage): depends_on("py-virtualenv@20.4.3:20.4.4,20.4.7:", when="@1.2", type=("build", "run")) depends_on("py-virtualenv@20.0.26:20", when="@:1.1", type=("build", "run")) depends_on("py-xattr@0.10", when="platform=darwin @1.6.1", type=("build", "run")) - depends_on("py-xattr@0.9.7:0.9", when="platform=darwin @1.2:") + depends_on("py-xattr@0.9.7:0.9", when="platform=darwin @1.2") depends_on("py-urllib3@1.26.0:1", when="@1.2") depends_on("py-dulwich@0.21.2:0.21", when="@1.6.1", type=("build", "run")) depends_on("py-dulwich@0.20.46:0.20", when="@1.2.1") |