You must log in or register to comment.
I’ve been working on a SquashFS based deployment system in Python, the issue I came across was the fact that the permission system relied on
tomllib
, which is only available on Python 3.11 only the latest LTS Linux distros have that version or above.But
uv
and thatshebang trick
, has helped me get round the limitations with ease and elegant.I’d say hat off to that, thank you for sharing that! =)