diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2024-10-27 05:24:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-27 05:24:51 +0100 |
commit | 17f07523f5afc70d129995335a0e20778f35d4f4 (patch) | |
tree | 5c49fa695fc4b1886390375a281ebb72961a9acd | |
parent | bd2ddb8909550ea1a158b09ef268c2cedaf346d0 (diff) | |
download | spack-17f07523f5afc70d129995335a0e20778f35d4f4.tar.gz spack-17f07523f5afc70d129995335a0e20778f35d4f4.tar.bz2 spack-17f07523f5afc70d129995335a0e20778f35d4f4.tar.xz spack-17f07523f5afc70d129995335a0e20778f35d4f4.zip |
py-alive-progress: support newer Python (#47220)
-rw-r--r-- | var/spack/repos/builtin/packages/py-alive-progress/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-alive-progress/package.py b/var/spack/repos/builtin/packages/py-alive-progress/package.py index 944dce0a95..31c011e687 100644 --- a/var/spack/repos/builtin/packages/py-alive-progress/package.py +++ b/var/spack/repos/builtin/packages/py-alive-progress/package.py @@ -19,7 +19,7 @@ class PyAliveProgress(PythonPackage): version("2.4.1", sha256="089757c8197f27ad972ba27e1060f6db92368d83c736884e159034fd74865323") version("1.6.2", sha256="642e1ce98becf226c8c36bf24e10221085998c5465a357a66fb83b7dc618b43e") - depends_on("python@2.7:3.8", type=("build", "run")) + depends_on("python@2.7:3", type=("build", "run")) depends_on("python@3.6:3", type=("build", "run"), when="@2:") depends_on("python@3.7:3", type=("build", "run"), when="@2.2:") depends_on("py-setuptools", type="build") |