diff options
author | Tarek Ziade <tarek@ziade.org> | 2010-05-31 19:39:15 +0200 |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2010-05-31 19:39:15 +0200 |
commit | c4318e2572b0158aa05fa241b85552073bb8400b (patch) | |
tree | 8d28763fb9528e7d3f5afac80404a53cf13abab5 | |
parent | 0fcf811dc7e0f7be7ebd624c84f5c371b15eba1e (diff) | |
download | external_python_setuptools-c4318e2572b0158aa05fa241b85552073bb8400b.tar.gz external_python_setuptools-c4318e2572b0158aa05fa241b85552073bb8400b.tar.bz2 external_python_setuptools-c4318e2572b0158aa05fa241b85552073bb8400b.zip |
starting 0.6.14
--HG--
branch : distribute
extra : rebase_source : b9e623ce0a5b70680f18c48e1c5f64753b70d38c
-rwxr-xr-x | README.txt | 6 | ||||
-rw-r--r-- | docs/conf.py | 4 | ||||
-rwxr-xr-x | release.sh | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
4 files changed, 7 insertions, 7 deletions
@@ -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.13.tar.gz - $ tar -xzvf distribute-0.6.13.tar.gz - $ cd distribute-0.6.13 + $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.14.tar.gz + $ tar -xzvf distribute-0.6.14.tar.gz + $ cd distribute-0.6.14 $ python setup.py install --------------------------- diff --git a/docs/conf.py b/docs/conf.py index 53614ed5..59443dd1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2009, The fellowship of the packaging' # built documents. # # The short X.Y version. -version = '0.6.13' +version = '0.6.14' # The full version, including alpha/beta/rc tags. -release = '0.6.4' +release = '0.6.14' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -1,5 +1,5 @@ #!/bin/sh -export VERSION="0.6.13" +export VERSION="0.6.14" # tagging hg tag $VERSION @@ -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.13" +VERSION = "0.6.14" from setuptools import setup, find_packages from setuptools.command.build_py import build_py as _build_py |