summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorChristopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com>2024-03-21 23:00:15 +0000
committerGitHub <noreply@github.com>2024-03-22 00:00:15 +0100
commit73e16a7881c5aab45a499c250391d3eb531b941b (patch)
tree88cbefc88baf9214ca1ffbcbfc6241ccb8e98070 /var
parentaf8868fa478f780afa57aebe29d615b745acb461 (diff)
downloadspack-73e16a7881c5aab45a499c250391d3eb531b941b.tar.gz
spack-73e16a7881c5aab45a499c250391d3eb531b941b.tar.bz2
spack-73e16a7881c5aab45a499c250391d3eb531b941b.tar.xz
spack-73e16a7881c5aab45a499c250391d3eb531b941b.zip
py-mrcfile: add new version (#43125)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-mrcfile/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-mrcfile/package.py b/var/spack/repos/builtin/packages/py-mrcfile/package.py
index a07b505c57..833b730e5a 100644
--- a/var/spack/repos/builtin/packages/py-mrcfile/package.py
+++ b/var/spack/repos/builtin/packages/py-mrcfile/package.py
@@ -17,8 +17,10 @@ class PyMrcfile(PythonPackage):
license("BSD-3-Clause")
+ version("1.4.3", sha256="0c2c702167c50c8b67e4ff7b1ec825a6bb60c0bff388950af08c79c5fd49e28b")
version("1.3.0", sha256="034f1868abf87f4e494b8b039030b50045cabccf352b8b3e88a6bd3a6d665715")
depends_on("python@3.4.0:")
depends_on("py-setuptools", type="build")
- depends_on("py-numpy@1.12.0:", type=("build", "run"))
+ depends_on("py-numpy@1.16.0:", when="@1.4.3:", type=("build", "run"))
+ depends_on("py-numpy@1.12.0:", when="@1.3.0", type=("build", "run"))