summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-09-11 23:34:20 +0200
committerGitHub <noreply@github.com>2023-09-11 16:34:20 -0500
commit286e1147d658bfca12f415716382f026e0212642 (patch)
treea21dacb95e025e76ac0eb30c16c244b66e473bd6 /var
parent7e3d228d19891884c26952af12c48eaeec1f2c23 (diff)
downloadspack-286e1147d658bfca12f415716382f026e0212642.tar.gz
spack-286e1147d658bfca12f415716382f026e0212642.tar.bz2
spack-286e1147d658bfca12f415716382f026e0212642.tar.xz
spack-286e1147d658bfca12f415716382f026e0212642.zip
py-tifffile: add 2023.8.30 (#39918)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-tifffile/package.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-tifffile/package.py b/var/spack/repos/builtin/packages/py-tifffile/package.py
index 6faeca3b04..a82e64e259 100644
--- a/var/spack/repos/builtin/packages/py-tifffile/package.py
+++ b/var/spack/repos/builtin/packages/py-tifffile/package.py
@@ -12,6 +12,7 @@ class PyTifffile(PythonPackage):
homepage = "https://github.com/cgohlke/tifffile"
pypi = "tifffile/tifffile-0.12.1.tar.gz"
+ version("2023.8.30", sha256="6a8c53b012a286b75d09a1498ab32f202f24cc6270a105b5d5911dc4426f162a")
version(
"2022.10.10", sha256="50b61ba943b866d191295bc38a00191c9fdab23ece063544c7f1a264e3f6aa8e"
)
@@ -19,9 +20,12 @@ class PyTifffile(PythonPackage):
version("2020.10.1", sha256="799feeccc91965b69e1288c51a1d1118faec7f40b2eb89ad2979591b85324830")
version("0.12.1", sha256="802367effe86b0d1e64cb5c2ed886771f677fa63260b945e51a27acccdc08fa1")
+ depends_on("python@3.9:", when="@2023.7.18:", type=("build", "run"))
depends_on("python@3.8:", when="@2022.2.2:", type=("build", "run"))
- depends_on("python@3.7:", when="@2020.10.1:", type=("build", "run"))
depends_on("py-setuptools", type="build")
+
+ # py-tifffile@2023.1.23: don't have a lower bound on py-numpy anymore
+ # -> leave it in nonetheless
depends_on("py-numpy@1.19.2:", when="@2022.2.2:", type=("build", "run"))
depends_on("py-numpy@1.15.1:", when="@2020.10.1:", type=("build", "run"))
depends_on("py-numpy@1.8.2:", type=("build", "run"))