From 50604de24d6133c4d653814d2cb1cbdb0eba05ed Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 11 Aug 2014 14:48:58 +0200 Subject: [PATCH] Update ez_setup to 5.5.1 --- scripts/ez_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ez_setup.py b/scripts/ez_setup.py index b2435fed3..6de57c040 100644 --- a/scripts/ez_setup.py +++ b/scripts/ez_setup.py @@ -36,7 +36,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "5.4.2" +DEFAULT_VERSION = "5.5.1" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): @@ -268,7 +268,7 @@ def download_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL, Download setuptools from a specified location and return its filename `version` should be a valid setuptools version number that is available - as an egg for download under the `download_base` URL (which should end + as an sdist for download under the `download_base` URL (which should end with a '/'). `to_dir` is the directory where the egg will be downloaded. `delay` is the number of seconds to pause before an actual download attempt.