Skip to content

Commit

Permalink
Fix typo in "requires_python" metadata field name
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenexp committed Jun 21, 2021
1 parent 7d9fe4a commit 78fd995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub fn upload(registry: &Registry, wheel_path: &Path) -> Result<(), UploadError>
add_option("keywords", &metadata.keywords);
add_option("home_page", &metadata.home_page);
add_option("download_url", &metadata.download_url);
add_option("requires_path", &metadata.requires_python);
add_option("requires_python", &metadata.requires_python);
add_option("summary", &metadata.summary);

let mut add_vec = |name, values: &[String]| {
Expand Down

0 comments on commit 78fd995

Please sign in to comment.