-
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
classifiers metadata name should be
Classifier
instead of `Classifi…
…ers` https://packaging.python.org/specifications/core-metadata/#classifier-multiple-use I've downloaded `Flask` and `requests` from PyPI, they all show `Classifier` in wheel metadata
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -361,7 +361,7 @@ impl Metadata21 { | |
add_vec("Supported-Platform", &self.supported_platform); | ||
add_vec("Platform", &self.platform); | ||
add_vec("Supported-Platform", &self.supported_platform); | ||
add_vec("Classifiers", &self.classifiers); | ||
add_vec("Classifier", &self.classifiers); | ||
add_vec("Requires-Dist", &self.requires_dist); | ||
add_vec("Provides-Dist", &self.provides_dist); | ||
add_vec("Obsoletes-Dist", &self.obsoletes_dist); | ||
|
@@ -542,7 +542,7 @@ mod test { | |
Metadata-Version: 2.1 | ||
Name: info-project | ||
Version: 0.1.0 | ||
Classifiers: Programming Language :: Python | ||
Classifier: Programming Language :: Python | ||
Requires-Dist: flask~=1.1.0 | ||
Requires-Dist: toml==0.10.0 | ||
Summary: A test project | ||
|
@@ -601,7 +601,7 @@ mod test { | |
Metadata-Version: 2.1 | ||
Name: info-project | ||
Version: 0.1.0 | ||
Classifiers: Programming Language :: Python | ||
Classifier: Programming Language :: Python | ||
Requires-Dist: flask~=1.1.0 | ||
Requires-Dist: toml==0.10.0 | ||
Summary: A test project | ||
|
@@ -649,7 +649,7 @@ mod test { | |
Metadata-Version: 2.1 | ||
Name: info | ||
Version: 0.1.0 | ||
Classifiers: Programming Language :: Python | ||
Classifier: Programming Language :: Python | ||
Summary: A test project | ||
Home-Page: https://example.org | ||
Author: konstin <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters