Skip to content

Commit

Permalink
Remove wheel from default PEP 517 backend
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Mar 10, 2024
1 parent 7fc8087 commit 1017e95
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/uv-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@ static WHEEL_NOT_FOUND_RE: Lazy<Regex> =
static DEFAULT_BACKEND: Lazy<Pep517Backend> = Lazy::new(|| Pep517Backend {
backend: "setuptools.build_meta:__legacy__".to_string(),
backend_path: None,
requirements: vec![
Requirement::from_str("wheel").unwrap(),
Requirement::from_str("setuptools >= 40.8.0").unwrap(),
],
requirements: vec![Requirement::from_str("setuptools >= 40.8.0").unwrap()],
});

#[derive(Error, Debug)]
Expand Down

0 comments on commit 1017e95

Please sign in to comment.