comparison ez_setup.py @ 1198:16ce9a6580a3

misc (install): Lower default setuptools version From 0d607b6ed49eab758fd9b272e148f032e65fb2e2 Mon Sep 17 00:00:00 2001 python-setuptools 5.7 is not yet in Debian, so we need to set the default version to 5.5 (the current version in sid) to avoid the newer version to be downloaded from pypi.
author Matteo Cypriani <mcy@lm7.fr>
date Tue, 09 Sep 2014 22:09:51 -0400
parents a1d47760df3f
children
comparison
equal deleted inserted replaced
1197:69ffe61240eb 1198:16ce9a6580a3
34 try: 34 try:
35 from site import USER_SITE 35 from site import USER_SITE
36 except ImportError: 36 except ImportError:
37 USER_SITE = None 37 USER_SITE = None
38 38
39 DEFAULT_VERSION = "5.7" 39 DEFAULT_VERSION = "5.5"
40 DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" 40 DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"
41 41
42 def _python_cmd(*args): 42 def _python_cmd(*args):
43 """ 43 """
44 Return True if the command succeeded. 44 Return True if the command succeeded.