# HG changeset patch # User Matteo Cypriani # Date 1410314991 14400 # Node ID 16ce9a6580a37316acec9e8c08ca3b07fcb36e4a # Parent 69ffe61240ebe5d735251d98e400d2b13feaeeee 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. diff -r 69ffe61240eb -r 16ce9a6580a3 ez_setup.py --- a/ez_setup.py Tue Sep 09 18:51:35 2014 -0400 +++ b/ez_setup.py Tue Sep 09 22:09:51 2014 -0400 @@ -36,7 +36,7 @@ except ImportError: USER_SITE = None -DEFAULT_VERSION = "5.7" +DEFAULT_VERSION = "5.5" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args):