mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-21 15:52:15 +00:00
Patch embedded install path for Python dylib on macOS during python install
(#10629)
## Summary Fixes #10598 ## Test Plan Looking for input here @zanieb. How/where would you include tests for this? More broadly: do we want a failure to perform the rename to be a hard error? Or should it start out as a warning? --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
parent
04fc36f066
commit
1af02ce8f2
6 changed files with 141 additions and 2 deletions
|
@ -165,6 +165,9 @@ impl PythonInstallation {
|
|||
installed.ensure_externally_managed()?;
|
||||
installed.ensure_sysconfig_patched()?;
|
||||
installed.ensure_canonical_executables()?;
|
||||
if let Err(e) = installed.ensure_dylib_patched() {
|
||||
e.warn_user(&installed);
|
||||
}
|
||||
|
||||
Ok(Self {
|
||||
source: PythonSource::Managed,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue