One gripe with pyproject.toml is that I can’t do editable installs (i.e ‘pip install -e path/to/package/‘) with it. Highly annoying when trying to patch packages.
[tool.poetry.dependencies] my-package = { "path" = "path/to/package", develop = true }
This way you can patch my-package and poetry will always install the latest state of it.
One gripe with pyproject.toml is that I can’t do editable installs (i.e ‘pip install -e path/to/package/‘) with it. Highly annoying when trying to patch packages.