From 91d05fea74b731408fe453ab006595b8c23021d9 Mon Sep 17 00:00:00 2001 From: Ales Erjavec Date: Fri, 22 Apr 2016 23:19:17 +0200 Subject: Set correct python_tag --- wheel/egg2wheel.py | 1 + wheel/wininst2wheel.py | 1 + 2 files changed, 2 insertions(+) diff --git a/wheel/egg2wheel.py b/wheel/egg2wheel.py index 94d727c..e8d3153 100755 --- a/wheel/egg2wheel.py +++ b/wheel/egg2wheel.py @@ -51,6 +51,7 @@ def egg2wheel(egg_path, dest_dir): bw = _bdist_wheel_tag(distutils.dist.Distribution()) bw.root_is_pure = root_is_purelib + bw.python_tag = pyver bw.plat_name_supplied = True bw.plat_name = egg_info['arch'] or 'any' if not root_is_purelib: diff --git a/wheel/wininst2wheel.py b/wheel/wininst2wheel.py index 8ec5230..15f0cdf 100755 --- a/wheel/wininst2wheel.py +++ b/wheel/wininst2wheel.py @@ -164,6 +164,7 @@ def bdist_wininst2wheel(path, dest_dir=os.path.curdir): bw = _bdist_wheel_tag(distutils.dist.Distribution()) bw.root_is_pure = root_is_purelib + bw.python_tag = pyver bw.plat_name_supplied = True bw.plat_name = info['arch'] or 'any' -- cgit v1.2.1