Skip to content

Commit

Permalink
chore(revert): revert preventing normalization (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
dandhlee committed Apr 26, 2021
1 parent acb04b4 commit f87bccb
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions setup.py
Expand Up @@ -17,21 +17,6 @@

import setuptools

# Disable version normalization performed by setuptools.setup()
# Including this workaround for Python2.7 support
try:
# Try the approach of using sic(), added in setuptools 46.1.0
from setuptools import sic
except ImportError:
# Try the approach of replacing packaging.version.Version
sic = lambda v: v
try:
# setuptools >=39.0.0 uses packaging from setuptools.extern
from setuptools.extern import packaging
except ImportError:
# setuptools <39.0.0 uses packaging from pkg_resources.extern
from pkg_resources.extern import packaging
packaging.version.Version = packaging.version.LegacyVersion

# Package metadata.

Expand Down Expand Up @@ -89,7 +74,7 @@

setuptools.setup(
name=name,
version=sic(version),
version=version,
description=description,
long_description=readme,
author="Google LLC",
Expand Down

0 comments on commit f87bccb

Please sign in to comment.