this post was submitted on 02 Nov 2024
263 points (98.2% liked)

Python

6337 readers
8 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 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 1 points 17 hours ago

The new king on the block: uv. It can do everything poetry does, while also using a standard pyproject.toml (no more weird ^), and it'll handle the Python version for you, so no faffing about with manually installing anything. Just uv sync and off you go!

Downside: not compatible with virtualenvwrapper, as it'll force its .venv in the local folder.

It's also still under heavy development and breaking changes are still expected, but it's already super nice to use.

Same guys (Astral) also made ruff the formatter/linter that they intend to eventually integrate into uv, IIRC.

I'm running all my personal projects under uv and am having a blast. It's so fast.