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
This commit is contained in:
Alec Scott 2025-04-24 16:45:02 -07:00 committed by GitHub
parent 9dc3ad4db7
commit cba9436cf4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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