this post was submitted on 22 Mar 2024
9 points (90.9% liked)

Python

7300 readers
23 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 4 comments
sorted by: hot top controversial new old
[–] xantoxis@lemmy.world 5 points 1 year ago* (last edited 1 year ago) (2 children)

Curious what the motivation is for this tool. I can see how rust would be much faster at dependency resolution, but dependency resolution has never been a bottleneck for me while I'm doing either ops or software development. Why is that the thing that needed speeding up?

What I need from a Python package manager:

  • it's present everywhere I need to install or develop Python packages

That's it. Pip scratches that itch. I also use poetry for env management and pyproject.toml management, that's it.

[–] danielquinn@lemmy.ca 2 points 1 year ago

My thoughts exactly. What I want is Poetry's workflow and use of pyproject.toml baked into Python.

[–] Andy@programming.dev 1 points 1 year ago

I have a pip-tools wrapper thing that now optionally uses uv instead. Aside from doing the pip-tools things faster, the main advantage I've found, and what really motivated me to support and recommend uv with it, is that uv creates new venvs MUCH faster than python's venv module, which is really annoyingly slow for that operation.

[–] beeng@discuss.tchncs.de 1 points 1 year ago

No lock file?