Rendered at 05:23:47 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
vivzkestrel 2 hours ago [-]
what is stopping the poetry guys to rewrite poetry from the ground up as part of a breaking new release?
curiousgal 6 hours ago [-]
Not to gatekeep things but if you think uv solved python dependency issues then you probably never had those issues in the first place and pip would have been enough for your use case. Conda on the other hand, with external binary dependencies, now we're talking.
2 hours ago [-]
necubi 3 hours ago [-]
I’m someone who is not a python developer but has to use python tools and run other people’s python code. I have suffered through learning about anaconda, virtualenv, pip, and more. Uv is the first time there’s a tool that just runs the software without requiring me to become a python ecosystem expert
simonw 6 hours ago [-]
The key issue uv solved wasn't dependencies, it was environments.
I used to have hundreds of venv folders scattered around my machine. These days I use "uv run" or "uvx" or "uv run --with boto3 python" and uv handles all of the bookkeeping for me.
bmitc 5 hours ago [-]
Poetry had already solved that.
simonw 4 hours ago [-]
What's the poetry equivalent of this?
uv run --with boto3 python
bmitc 1 hours ago [-]
The claim was:
> The key issue uv solved wasn't dependencies, it was environments.
and not specific, niche features.
I don't know of such a command in Poetry, but it could still be solved with dev groups or running Python in the virtual environment and installing the package.
simonw 1 hours ago [-]
That command is an environment command. It runs Python in a temporary environment with boto3 installed - I use that trick all the time.
saaspirant 4 hours ago [-]
It was very slow compared to uv
bmitc 1 hours ago [-]
Yes, but it still solves dependencies and environments.
I used to have hundreds of venv folders scattered around my machine. These days I use "uv run" or "uvx" or "uv run --with boto3 python" and uv handles all of the bookkeeping for me.
> The key issue uv solved wasn't dependencies, it was environments.
and not specific, niche features.
I don't know of such a command in Poetry, but it could still be solved with dev groups or running Python in the virtual environment and installing the package.
https://news.ycombinator.com/item?id=47438723