mirror of
https://github.com/astral-sh/uv
synced 2026-01-09 23:53:26 -05:00
## Summary This is a minor fix as the command in https://docs.astral.sh/uv/pip/packages/#installing-a-package to install projects in editable mode from local directories results in the following error: ``` error: Failed to parse: `@` Caused by: Expected package name starting with an alphanumeric character, found `@` ``` This PR adds the missing `"` ## Test Plan <!-- How was it tested? --> Using the fixed syntax here does not result in the above error, and packages are correctly installed ✨