diff options
author | tarek <none@none> | 2009-09-26 20:20:03 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-09-26 20:20:03 +0200 |
commit | 7cdf5f6c30168ddc2a0bfbc321e75ef254e719b6 (patch) | |
tree | e5174bfed9aa25dc8a147e9b534dc6a01377c24f | |
parent | 610e31a405f1129651ef5df3bcf0721ceec3076c (diff) | |
download | external_python_setuptools-7cdf5f6c30168ddc2a0bfbc321e75ef254e719b6.tar.gz external_python_setuptools-7cdf5f6c30168ddc2a0bfbc321e75ef254e719b6.tar.bz2 external_python_setuptools-7cdf5f6c30168ddc2a0bfbc321e75ef254e719b6.zip |
starting 0.6.3 development
--HG--
branch : distribute
extra : rebase_source : 2854b62a13986569c1ad9773c54c73eb62025f70
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rw-r--r-- | distribute.egg-info/entry_points.txt | 3 | ||||
-rw-r--r-- | distribute_setup.py | 2 | ||||
-rwxr-xr-x | release.sh | 4 | ||||
-rwxr-xr-x | setup.py | 2 |
5 files changed, 11 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 15adb6a4..c236c98e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +0.6.3 +----- + + + +----- 0.6.2 ----- diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt index 4bbb6848..d18df338 100644 --- a/distribute.egg-info/entry_points.txt +++ b/distribute.egg-info/entry_points.txt @@ -7,7 +7,6 @@ build_py = setuptools.command.build_py:build_py saveopts = setuptools.command.saveopts:saveopts egg_info = setuptools.command.egg_info:egg_info register = setuptools.command.register:register -upload = setuptools.command.upload:upload install_egg_info = setuptools.command.install_egg_info:install_egg_info alias = setuptools.command.alias:alias easy_install = setuptools.command.easy_install:easy_install @@ -32,7 +31,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete [console_scripts] easy_install = setuptools.command.easy_install:main -easy_install-2.4 = 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/distribute_setup.py b/distribute_setup.py index 4fe04875..d88e0ebb 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -46,7 +46,7 @@ except ImportError: args = [quote(arg) for arg in args] return os.spawnl(os.P_WAIT, sys.executable, *args) == 0 -DEFAULT_VERSION = "0.6.2" +DEFAULT_VERSION = "0.6.3" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/" SETUPTOOLS_PKG_INFO = """\ Metadata-Version: 1.0 @@ -1,5 +1,5 @@ #!/bin/sh -export VERSION="0.6.2" +export VERSION="0.6.3" # creating the releases rm -rf dist @@ -7,6 +7,6 @@ rm -rf dist # now preparing the source release python2.6 setup.py -q egg_info -RDb '' sdist register upload -# pushin the bootstrap script +# pushing the bootstrap script scp distribute_setup.py ziade.org:nightly/build/ @@ -36,7 +36,7 @@ init_path = convert_path('setuptools/command/__init__.py') exec(open(init_path).read(), d) SETUP_COMMANDS = d['__all__'] -VERSION = "0.6.2" +VERSION = "0.6.3" from setuptools import setup, find_packages import sys |