From cba9436cf4f516df011eeb3de7312d3c8edcb69f Mon Sep 17 00:00:00 2001 From: Alec Scott Date: Thu, 24 Apr 2025 16:45:02 -0700 Subject: [PATCH] py-repligit: add v0.1.1 (#50204) * py-repligit: add v0.1.1 * Add conflicts for older versions of python when at v0.1.0 --- var/spack/repos/builtin/packages/py-repligit/package.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/py-repligit/package.py b/var/spack/repos/builtin/packages/py-repligit/package.py index ffd505b9bf8..acb63ba738a 100644 --- a/var/spack/repos/builtin/packages/py-repligit/package.py +++ b/var/spack/repos/builtin/packages/py-repligit/package.py @@ -17,12 +17,14 @@ class PyRepligit(PythonPackage): license("Apache-2.0 WITH LLVM-exception") version("main", branch="main") + version("0.1.1", sha256="e1fec2b080dd657502b967148fbb7dd5d33eb02fc47a2e91ed7bbfebf082410e") version("0.1.0", sha256="9beac1a14542704f2e5af6a2f3d391d8adf2112ae3c70e98339db251a9e1079e") variant("aiohttp", default="False", description="Enable aiohttp support") - depends_on("python@3.10:", type=("build", "run")) + conflicts("python@:3.12", when="@0.1.0") + depends_on("python@3.10:", type=("build", "run")) depends_on("py-hatchling", type="build") depends_on("py-aiohttp", type=("build", "run"), when="+aiohttp")