Support --link-mode=symlink (#5208)

## Summary

Addressing this [issue](https://github.com/astral-sh/uv/issues/5147) by
adding the capability for Symbolic linking as a link mode when
installing or syncing dependencies.
This commit is contained in:
Danny 2024-07-19 08:41:18 -04:00 committed by GitHub
parent bb84cbb39d
commit ef56df26bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 126 additions and 4 deletions

View file

@ -287,6 +287,7 @@ Windows.
- `"clone"`: Clone (i.e., copy-on-write) packages from the wheel into the site packages
- `"copy"`: Copy packages from the wheel into the site packages
- `"hardlink"`: Hard link packages from the wheel into the site packages
- `"symlink"`: Symbolically link packages from the wheel into the site packages
**Example usage**:
@ -1524,6 +1525,7 @@ Windows.
- `"clone"`: Clone (i.e., copy-on-write) packages from the wheel into the site packages
- `"copy"`: Copy packages from the wheel into the site packages
- `"hardlink"`: Hard link packages from the wheel into the site packages
- `"symlink"`: Symbolically link packages from the wheel into the site packages
**Example usage**: