From 61d2fd1d71e8940531c35327e6d91c41ddcd9dbd Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Thu, 7 Jul 2005 02:10:14 +0000 Subject: Bump release version --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041089 --- EasyInstall.txt | 8 ++++---- ez_setup.py | 2 +- setup.py | 2 +- setuptools/__init__.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/EasyInstall.txt b/EasyInstall.txt index 26661c74..8acddc1b 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -23,13 +23,13 @@ Installing "Easy Install" ------------------------- Windows users can just download and run the `setuptools binary installer for -Windows `_. +Windows `_. All others should just download `ez_setup.py `_, and run it; this will download and install the `Python 2.3 egg`_ or `Python 2.4 egg`_ for you. -.. _Python 2.3 egg: http://peak.telecommunity.com/dist/setuptools-0.5a5-py2.3.egg -.. _Python 2.4 egg: http://peak.telecommunity.com/dist/setuptools-0.5a5-py2.4.egg +.. _Python 2.3 egg: http://peak.telecommunity.com/dist/setuptools-0.5a6-py2.3.egg +.. _Python 2.4 egg: http://peak.telecommunity.com/dist/setuptools-0.5a6-py2.4.egg You may receive a message telling you about an obsolete version of setuptools being present; if so, you must be sure to delete it entirely, along @@ -66,7 +66,7 @@ version, and automatically downloading, building, and installing it:: **Example 2**. Install or upgrade a package by name and version by finding links on a given "download page":: - easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a5" + easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a6" **Example 3**. Download a source distribution from a specified URL, automatically building and installing it:: diff --git a/ez_setup.py b/ez_setup.py index 247f06ab..a0367e22 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``. This file can also be run as a script to install or upgrade setuptools. """ -DEFAULT_VERSION = "0.5a5" +DEFAULT_VERSION = "0.5a6" DEFAULT_URL = "http://peak.telecommunity.com/dist/" import sys, os diff --git a/setup.py b/setup.py index b8e91302..239823d3 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """Distutils setup file, used to install or test 'setuptools'""" -VERSION = "0.5a5" +VERSION = "0.5a6" from setuptools import setup, find_packages, Require setup( diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 246c05b6..5247f25b 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -8,7 +8,7 @@ from distutils.core import Command as _Command from distutils.util import convert_path import os.path -__version__ = '0.5a5' +__version__ = '0.5a6' __all__ = [ 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', -- cgit v1.2.1