this post was submitted on 10 Dec 2024
33 points (94.6% liked)

Python

6501 readers
30 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

๐Ÿ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

๐Ÿ Python project:
๐Ÿ’“ Python Community:
โœจ Python Ecosystem:
๐ŸŒŒ Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] CJJackson 1 points 1 week ago

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 that shebang trick, has helped me get round the limitations with ease and elegant.

I'd say hat off to that, thank you for sharing that! =)