Skip to content

Commit

Permalink
Merge pull request #574 from ravenexp/fix-requires-python
Browse files Browse the repository at this point in the history
Fix typo in "requires_python" metadata field name
  • Loading branch information
messense authored Jun 21, 2021
2 parents 7d9fe4a + 78fd995 commit a6601a4
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 a6601a4

Please sign in to comment.