Skip to content

Commit

Permalink
Update external management with main
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jun 17, 2024
1 parent 7b452ae commit 717799e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/uv-toolchain/src/managed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ impl InstalledToolchain {
.path
.join("install")
.join(lib)
.join(format!("python{}", self.python_version.python_version()))
// Note the Python version must not include the patch.
.join(format!("python{}", self.key.version().python_version()))
.join("EXTERNALLY-MANAGED");
fs_err::write(file, EXTERNALLY_MANAGED)?;
Ok(())
Expand Down

0 comments on commit 717799e

Please sign in to comment.