diff options
| author | Alex Grönholm <alex.gronholm@nextday.fi> | 2020-08-14 22:04:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-14 22:04:24 +0300 |
| commit | 0b4ee250072b093b901a7e6c121b8b2079274dc6 (patch) | |
| tree | 74bb064f206bb5dde890bf7f976fe6f45bf4fccf /src | |
| parent | 4253bbb865823101d1a1757d12239fc74f49c4e7 (diff) | |
| download | wheel-git-0b4ee250072b093b901a7e6c121b8b2079274dc6.tar.gz | |
Fixed bdist_wheel not lower casing the platform tag (#366)
Fixes #364.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wheel/bdist_wheel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wheel/bdist_wheel.py b/src/wheel/bdist_wheel.py index ca6d5cd..c9730f4 100644 --- a/src/wheel/bdist_wheel.py +++ b/src/wheel/bdist_wheel.py @@ -254,7 +254,7 @@ class bdist_wheel(Command): if plat_name in ('linux-x86_64', 'linux_x86_64') and sys.maxsize == 2147483647: plat_name = 'linux_i686' - plat_name = plat_name.replace('-', '_').replace('.', '_') + plat_name = plat_name.lower().replace('-', '_').replace('.', '_') if self.root_is_pure: if self.universal: |
