Commit f588b5f1 authored by Jason R. Coombs's avatar Jason R. Coombs

Merged in minrk/setuptools/no-normalize-warning (pull request #118)

remove warning on normalization
parents 492758af 88f62bfe
......@@ -277,10 +277,9 @@ class Distribution(_Distribution):
normalized_version = str(ver)
if self.metadata.version != normalized_version:
warnings.warn(
"The version specified requires normalization, "
"consider using '%s' instead of '%s'." % (
normalized_version,
"Normalizing '%s' to '%s'" % (
self.metadata.version,
normalized_version,
)
)
self.metadata.version = normalized_version
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment