Migration
This is small poetry -> uv migration guide that should get most people started.
-
Run uvx:
uvx pdm import pyproject.toml
-
Remove all poetry sections in the pyproject (i.e. [tool.poetry...] sections)
-
Replace
[tool.pdm.dev-dependencies] dev = [
with
[tool.uv] dev-dependencies = [
Done. Your pyproject.toml file is now compatible …
read more