Convert poetry to uv
When I encountered #uv I fell for it right away. I was already using ruff for a while and started looking into rye, which was the intermediate step before it became uv.
Creating a uv repo is easy, just run uv init $project
and you are off to the races. Using it for new projects is easy if you are already used to poetry. The commands are quite similar. Just add a few libraries with uv add $library
or uv add --dev $library
to make it part of the development group.