Add source distribution support to uv-build crate (#6896)

## Summary

Just exposes the correct PEP 517 hooks.
This commit is contained in:
Charlie Marsh 2024-09-02 14:14:49 -04:00 committed by GitHub
parent ea0a0db7a7
commit 42a4d80a63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 81 additions and 50 deletions

View file

@ -110,5 +110,5 @@ pub(crate) async fn build(args: BuildArgs) -> Result<PathBuf> {
concurrency.builds,
)
.await?;
Ok(wheel_dir.join(builder.build_wheel(&wheel_dir).await?))
Ok(wheel_dir.join(builder.build(&wheel_dir).await?))
}