aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2011-05-30 18:00:44 +0200
committerTarek Ziade <tarek@ziade.org>2011-05-30 18:00:44 +0200
commitdb34965623975ce24d9193dad5592924107f980d (patch)
treea305b076df896c710098c5ec4633ae5def2152d7
parent91479552a228a08d9e44ba4e3b62c82926bade33 (diff)
downloadexternal_python_setuptools-db34965623975ce24d9193dad5592924107f980d.tar.gz
external_python_setuptools-db34965623975ce24d9193dad5592924107f980d.tar.bz2
external_python_setuptools-db34965623975ce24d9193dad5592924107f980d.zip
starting 0.6.18
--HG-- branch : distribute extra : rebase_source : 5d775d7c1cae24d5a671bd92594981b2979d40e7
-rwxr-xr-xREADME.txt6
-rw-r--r--distribute.egg-info/entry_points.txt2
-rwxr-xr-xrelease.sh2
-rwxr-xr-xsetup.py2
4 files changed, 6 insertions, 6 deletions
diff --git a/README.txt b/README.txt
index 91a60321..2eefab4c 100755
--- a/README.txt
+++ b/README.txt
@@ -99,9 +99,9 @@ Source installation
Download the source tarball, uncompress it, then run the install command::
- $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.17.tar.gz
- $ tar -xzvf distribute-0.6.17.tar.gz
- $ cd distribute-0.6.17
+ $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.18.tar.gz
+ $ tar -xzvf distribute-0.6.18.tar.gz
+ $ cd distribute-0.6.18
$ python setup.py install
---------------------------
diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt
index 9fd41758..1c9f123d 100644
--- a/distribute.egg-info/entry_points.txt
+++ b/distribute.egg-info/entry_points.txt
@@ -32,7 +32,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete
[console_scripts]
easy_install = setuptools.command.easy_install:main
-easy_install-2.7 = setuptools.command.easy_install:main
+easy_install-2.6 = setuptools.command.easy_install:main
[setuptools.file_finders]
svn_cvs = setuptools.command.sdist:_default_revctrl
diff --git a/release.sh b/release.sh
index ee0d8589..c7571437 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.17"
+export VERSION="0.6.18"
# tagging
hg tag $VERSION
diff --git a/setup.py b/setup.py
index 21db64c3..92838b9a 100755
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ init_path = convert_path('setuptools/command/__init__.py')
exec(open(init_path).read(), d)
SETUP_COMMANDS = d['__all__']
-VERSION = "0.6.17"
+VERSION = "0.6.18"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py