From 4bdec62b1854bc90ef788bef36d60ce32706f643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 15 Jun 2014 17:21:22 +0200 Subject: [PATCH] update ez_setup.py to version from setuptools 5.0.2 The previously used 4.0.1 setuptools version got revoked and 5.1 superseeds it. Updated related README.rst project docs. --- README.rst | 2 +- ez_setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 0566ff0..7d89498 100644 --- a/README.rst +++ b/README.rst @@ -307,7 +307,7 @@ version 0.7 (development) * Attempting to run ``setup.py`` in an unsupported Python environment now reports a clean error message. * Now uses ``setuptools`` 1.4.2 with Python 2.4 & 2.5, and ``setuptools`` - 4.0.1 with all more recent Python releases. + 5.1 with all more recent Python releases. * Project may now be installed without even in environments when you can not install ``setuptools``. diff --git a/ez_setup.py b/ez_setup.py index 1bcd3e9..10d299b 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -36,7 +36,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "4.0.1" +DEFAULT_VERSION = "5.1" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args):