this post was submitted on 09 Apr 2025
49 points (100.0% liked)

Python

6987 readers
13 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
top 8 comments
sorted by: hot top controversial new old
[–] [email protected] 11 points 3 days ago

Getting close to python Ο€ releasing. Looking forward to it!

[–] [email protected] 8 points 3 days ago (2 children)

I've been playing around with the free-threaded build of 3.13 and it seems pretty stable with the standard library at least. Most of what I've read suggests the only problems have been with 3rd party libraries that make unsafe assumptions about the GIL being around. But I've tried it out with my own production code and it's been rock solid and performant (at least by Python standards).

[–] [email protected] 2 points 3 days ago

Have you tried it with gunicorn?

[–] [email protected] 1 points 3 days ago

That's encouraging!

[–] [email protected] 2 points 4 days ago (2 children)

Is there a Node Version Manager (nvm) equivalent for Python out there?

[–] [email protected] 14 points 3 days ago (1 children)

uv

It is made by the Astral team, who made ruff and are working on a static type checker. They're making great Python tooling and uv is no exception.

[–] [email protected] 1 points 3 days ago

This is excellent, thank you