summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2023-06-08 14:14:28 -0500
committerGitHub <noreply@github.com>2023-06-08 15:14:28 -0400
commitf5b595071e7832560a91f19f65fd9ec912bc2b72 (patch)
tree126250059a15fce5ff531512378a27f542efc1bc /var
parentb6f2184cce5a8198e0beedeea5e846859ec5dfbb (diff)
downloadspack-f5b595071e7832560a91f19f65fd9ec912bc2b72.tar.gz
spack-f5b595071e7832560a91f19f65fd9ec912bc2b72.tar.bz2
spack-f5b595071e7832560a91f19f65fd9ec912bc2b72.tar.xz
spack-f5b595071e7832560a91f19f65fd9ec912bc2b72.zip
py-lightning: add v2.0.3 (#38260)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-lightning-cloud/package.py6
-rw-r--r--var/spack/repos/builtin/packages/py-lightning/package.py11
2 files changed, 14 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-lightning-cloud/package.py b/var/spack/repos/builtin/packages/py-lightning-cloud/package.py
index b0799e3c5a..e0f0afca08 100644
--- a/var/spack/repos/builtin/packages/py-lightning-cloud/package.py
+++ b/var/spack/repos/builtin/packages/py-lightning-cloud/package.py
@@ -12,14 +12,18 @@ class PyLightningCloud(PythonPackage):
homepage = "https://lightning.ai/"
pypi = "lightning_cloud/lightning_cloud-0.5.31.tar.gz"
+ version("0.5.36", sha256="990558d93a1b67d8bcbf8a87feb2ac455e13ec5223916ad2d5707d96df9558c9")
version("0.5.31", sha256="a5a138f4abbeffe66ee476fb9a8d621befac0434ffeeeec1cc00ccd3d72ffc09")
depends_on("py-setuptools", type="build")
depends_on("py-click", type=("build", "run"))
- depends_on("py-fastapi+all", type=("build", "run"))
+ depends_on("py-fastapi", when="@0.5.36:", type=("build", "run"))
+ depends_on("py-fastapi+all", when="@:0.5.31", type=("build", "run"))
depends_on("py-pyjwt", type=("build", "run"))
+ depends_on("py-python-multipart", when="@0.5.36:", type=("build", "run"))
depends_on("py-requests", type=("build", "run"))
depends_on("py-rich", type=("build", "run"))
depends_on("py-six", type=("build", "run"))
depends_on("py-urllib3", type=("build", "run"))
+ depends_on("py-uvicorn", when="@0.5.36:", type=("build", "run"))
depends_on("py-websocket-client", type=("build", "run"))
diff --git a/var/spack/repos/builtin/packages/py-lightning/package.py b/var/spack/repos/builtin/packages/py-lightning/package.py
index 144a4cfdc0..5a56c319af 100644
--- a/var/spack/repos/builtin/packages/py-lightning/package.py
+++ b/var/spack/repos/builtin/packages/py-lightning/package.py
@@ -16,6 +16,7 @@ class PyLightning(PythonPackage):
maintainers("adamjstewart")
+ version("2.0.3", sha256="5a70f05e40f1d7882f81eace0d4a86fe2604b423f8df42beaabd187bfdb420cf")
version("2.0.2", sha256="fa32d671850a5be2d961c6705c927f6f48d1cf9696f61f7d865244142e684430")
version("2.0.1", sha256="abf4f9e10b0d97348336038db79f4efc75daa2f3f81876822273023294d6ef3e")
version("2.0.0", sha256="dfe158aa91ac139d8bdfccc7cdb627072e0052076ae9c0459c8fa12a028dbe6c")
@@ -38,9 +39,11 @@ class PyLightning(PythonPackage):
depends_on("py-croniter@1.3", type=("build", "run"))
depends_on("py-dateutils@:1", type=("build", "run"))
depends_on("py-deepdiff@5.7:7", type=("build", "run"))
+ depends_on("py-fastapi@0.69:0.88", when="@2.0.3:", type=("build", "run"))
depends_on("py-fastapi@:0.88", type=("build", "run"))
depends_on("py-fsspec@2022.5:2023+http", type=("build", "run"))
depends_on("py-inquirer@2.10:4", type=("build", "run"))
+ depends_on("py-lightning-cloud@0.5.34:", when="@2.0.3:", type=("build", "run"))
depends_on("py-lightning-cloud@0.5.31:", when="@2:", type=("build", "run"))
depends_on("py-lightning-cloud@0.5.27:", when="@:1", type=("build", "run"))
depends_on("py-lightning-utilities@0.7:1", when="@2:", type=("build", "run"))
@@ -48,11 +51,14 @@ class PyLightning(PythonPackage):
depends_on("py-numpy@1.17.2:2", type=("build", "run"))
depends_on("py-packaging@17.1:24", type=("build", "run"))
depends_on("py-psutil@:6", type=("build", "run"))
- depends_on("py-pydantic@:2", type=("build", "run"))
+ depends_on("py-pydantic@1.7.4:3", when="@2.0.3:", type=("build", "run"))
+ depends_on("py-pydantic@:2", when="@:2.0.2", type=("build", "run"))
+ depends_on("py-python-multipart@0.0.5:1", type=("build", "run"))
depends_on("py-requests@:3", type=("build", "run"))
depends_on("py-rich@12.3:14", when="@2:", type=("build", "run"))
depends_on("py-rich@:14", when="@:1", type=("build", "run"))
- depends_on("py-starlette@:1", type=("build", "run"))
+ depends_on("py-starlette", when="@2.0.3:", type=("build", "run"))
+ depends_on("py-starlette@:1", when="@:2.0.2", type=("build", "run"))
depends_on("py-starsessions@1.2.1:1", type=("build", "run"))
depends_on("py-torch@1.11:3", when="@2:", type=("build", "run"))
depends_on("py-torch@1.10:3", when="@:1", type=("build", "run"))
@@ -70,6 +76,7 @@ class PyLightning(PythonPackage):
depends_on("py-aiohttp@3.8:3", type=("build", "run"))
depends_on("py-docker@5:6", type=("build", "run"))
depends_on("py-hydra-core@1.0.5:1", type=("build", "run"))
+ depends_on("py-jsonargparse@4.18:4+signatures", when="@2.0.3:", type=("build", "run"))
depends_on("py-jsonargparse@4.18:4", when="@2:", type=("build", "run"))
depends_on("py-jsonargparse@4.18:4+signatures", when="@:1", type=("build", "run"))
depends_on("py-lightning-fabric@1.9:", when="@2:", type=("build", "run"))