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")