From dc44a4bb9cb3d4275d20b4cfbd6e377119a2c777 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Wed, 21 Aug 2024 16:05:10 -0400 Subject: [PATCH] beta uv snap --- craft_parts/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/craft_parts/plugins/base.py b/craft_parts/plugins/base.py index 4ecae45b..ef0980ca 100644 --- a/craft_parts/plugins/base.py +++ b/craft_parts/plugins/base.py @@ -155,7 +155,7 @@ def _use_uv(self) -> bool: def get_build_snaps(self) -> set[str]: """Return a set of required snaps to install in the build environment.""" if self._use_uv: - return {"astral-uv"} + return {"astral-uv/latest/beta"} return set() @override