summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2015-10-05 14:52:53 -0400
committerDonald Stufft <donald@stufft.io>2015-10-05 14:52:53 -0400
commitea5459294db6542aa0051f3b4d871ab123e8a0d4 (patch)
tree9a826c4aadf0dccc521ab0a9102dc040b5e1d2f2
parent005e4a4fa69539ef88e3239f74f30788b71245ad (diff)
downloadpip-ea5459294db6542aa0051f3b4d871ab123e8a0d4.tar.gz
prefer fat64 wheels over fat32 wheels
-rw-r--r--pip/pep425tags.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pip/pep425tags.py b/pip/pep425tags.py
index 5a4a7c574..6b886fe7d 100644
--- a/pip/pep425tags.py
+++ b/pip/pep425tags.py
@@ -91,10 +91,10 @@ def get_supported(versions=None, noarch=False):
actual_arches.append('fat')
if actual_arch in ('i386', 'x86_64'):
actual_arches.append('intel')
- if actual_arch in ('i386', 'ppc', 'x86_64'):
- actual_arches.append('fat32')
if actual_arch in ('ppc64', 'x86_64'):
actual_arches.append('fat64')
+ if actual_arch in ('i386', 'ppc', 'x86_64'):
+ actual_arches.append('fat32')
if actual_arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'):
actual_arches.append('universal')
tpl = '{0}_{1}_%i_%s'.format(name, major)