aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-06-09 15:14:16 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-06-09 15:14:16 -0400
commit16361e51b834153f2e0e96897ebf33163c18016b (patch)
tree872749c9d063cfeae63f31d47c11ae1db99cc411 /setuptools/command/easy_install.py
parentdf8f9384fb36a9d25a42ed6896c4dcd19f5a3d30 (diff)
downloadexternal_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-xsetuptools/command/easy_install.py3
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: