diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-06-09 15:14:16 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-06-09 15:14:16 -0400 |
commit | 16361e51b834153f2e0e96897ebf33163c18016b (patch) | |
tree | 872749c9d063cfeae63f31d47c11ae1db99cc411 /setuptools/command/easy_install.py | |
parent | df8f9384fb36a9d25a42ed6896c4dcd19f5a3d30 (diff) | |
download | external_python_setuptools-16361e51b834153f2e0e96897ebf33163c18016b.tar.gz external_python_setuptools-16361e51b834153f2e0e96897ebf33163c18016b.tar.bz2 external_python_setuptools-16361e51b834153f2e0e96897ebf33163c18016b.zip |
Remove ARM launchers. Fixes #611.
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index ccc66cf7..9ca1554e 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -32,7 +32,6 @@ import zipfile import re import stat import random -import platform import textwrap import warnings import site @@ -2203,8 +2202,6 @@ def get_win_launcher(type): Returns the executable as a byte string. """ launcher_fn = '%s.exe' % type - if platform.machine().lower() == 'arm': - launcher_fn = launcher_fn.replace(".", "-arm.") if is_64bit(): launcher_fn = launcher_fn.replace(".", "-64.") else: |