summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRyan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com>2023-08-29 19:33:00 -0400
committerGitHub <noreply@github.com>2023-08-29 18:33:00 -0500
commit78fe2c63fa84478d294ecbd7ba5d694fa4bcd09c (patch)
treef62cdbb5f96b478ecb8f6370ff105ca3e3cee887 /var
parentf4f396745e165ae999f3f17eed0691412e51e4d9 (diff)
downloadspack-78fe2c63fa84478d294ecbd7ba5d694fa4bcd09c.tar.gz
spack-78fe2c63fa84478d294ecbd7ba5d694fa4bcd09c.tar.bz2
spack-78fe2c63fa84478d294ecbd7ba5d694fa4bcd09c.tar.xz
spack-78fe2c63fa84478d294ecbd7ba5d694fa4bcd09c.zip
py-parsl: add v2023.08.21 (#39642)
* py-parsl: add v2023.08.21 * fix style * add missing deps
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-parsl/package.py27
1 files changed, 19 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/py-parsl/package.py b/var/spack/repos/builtin/packages/py-parsl/package.py
index 5bc2c5ad9f..3b7b4771a2 100644
--- a/var/spack/repos/builtin/packages/py-parsl/package.py
+++ b/var/spack/repos/builtin/packages/py-parsl/package.py
@@ -16,32 +16,43 @@ class PyParsl(PythonPackage):
maintainers("hategan")
+ version(
+ "2023.08.21", sha256="d7d6145ad5ab63baf9c9f9441a0a6ea5be6f896ef8094d47bf64d949a56b1782"
+ )
version("1.2.0", sha256="342c74ee39fa210d74b8adfb455f0a9c20d9f059ec5bd9d60c5bdc9929abcdcc")
version("1.1.0", sha256="6a623d3550329f028775950d23a2cafcb0f82b199f15940180410604aa5d102c")
variant("monitoring", default=False, description="enable live monitoring")
# See https://parsl.readthedocs.io/en/stable/userguide/monitoring.html
- depends_on("python@3.6:", type=("build", "run"))
+ depends_on("python@3.8:", type=("build", "run"), when="@2023.08.21:")
+ depends_on("python@3.6:", type=("build", "run"), when="@:1.2")
depends_on("py-setuptools", type="build")
depends_on("py-pyzmq@17.1.2:", type=("build", "run"))
- depends_on("py-typeguard@2.10:", type=("build", "run"))
- depends_on("py-typing-extensions", type=("build", "run"))
+ depends_on("py-typeguard@2.10:2", type=("build", "run"), when="@2023.08.21:")
+ depends_on("py-typeguard@2.10:", type=("build", "run"), when="@:1.2")
+ depends_on("py-typing-extensions@4.6:4", type=("build", "run"), when="@2023.08.21:")
+ depends_on("py-typing-extensions", type=("build", "run"), when="@:1.2")
+ depends_on("py-six", type=("build", "run"), when="@2023.08.21:")
depends_on("py-globus-sdk", type=("build", "run"))
depends_on("py-dill", type=("build", "run"))
depends_on("py-tblib", type=("build", "run"))
depends_on("py-requests", type=("build", "run"))
depends_on("py-paramiko", type=("build", "run"))
depends_on("py-psutil@5.5.1:", type=("build", "run"))
+ depends_on("py-setproctitle", type=("build", "run"), when="@2023.08.21:")
with when("+monitoring"):
- depends_on("py-sqlalchemy@1.3", type=("build", "run"))
- conflicts("^py-sqlalchemy@1.3.4")
- depends_on("py-sqlalchemy-utils", type=("build", "run"))
+ depends_on("py-sqlalchemy@1.4:1", type=("build", "run"), when="@2023.08.21:")
+ depends_on("py-sqlalchemy@1.3", type=("build", "run"), when="@:1.2")
+ conflicts("^py-sqlalchemy@1.3.4", when="@:1.2")
+ depends_on("py-sqlalchemy-utils", type=("build", "run"), when="@:1.2")
depends_on("py-pydot", type=("build", "run"))
- depends_on("py-networkx", type=("build", "run"))
+ depends_on("py-networkx@2.5.0:2.5", type=("build", "run"), when="@2023.08.21:")
+ depends_on("py-networkx", type=("build", "run"), when="@:1.2")
depends_on("py-flask@1.0.2:", type=("build", "run"))
depends_on("py-flask-sqlalchemy", type=("build", "run"))
- depends_on("py-pandas", type=("build", "run"))
+ depends_on("py-pandas@:1", type=("build", "run"), when="@2023.08.21:")
+ depends_on("py-pandas", type=("build", "run"), when="@:1.2")
depends_on("py-plotly", type=("build", "run"))
depends_on("py-python-daemon", type=("build", "run"))