Commit 7cdf5f6c authored by tarek's avatar tarek

starting 0.6.3 development

--HG--
branch : distribute
extra : rebase_source : 2854b62a13986569c1ad9773c54c73eb62025f70
parent 610e31a4
...@@ -2,6 +2,12 @@ ...@@ -2,6 +2,12 @@
CHANGES CHANGES
======= =======
-----
0.6.3
-----
----- -----
0.6.2 0.6.2
----- -----
......
...@@ -7,7 +7,6 @@ build_py = setuptools.command.build_py:build_py ...@@ -7,7 +7,6 @@ build_py = setuptools.command.build_py:build_py
saveopts = setuptools.command.saveopts:saveopts saveopts = setuptools.command.saveopts:saveopts
egg_info = setuptools.command.egg_info:egg_info egg_info = setuptools.command.egg_info:egg_info
register = setuptools.command.register:register register = setuptools.command.register:register
upload = setuptools.command.upload:upload
install_egg_info = setuptools.command.install_egg_info:install_egg_info install_egg_info = setuptools.command.install_egg_info:install_egg_info
alias = setuptools.command.alias:alias alias = setuptools.command.alias:alias
easy_install = setuptools.command.easy_install:easy_install easy_install = setuptools.command.easy_install:easy_install
...@@ -32,7 +31,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete ...@@ -32,7 +31,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete
[console_scripts] [console_scripts]
easy_install = setuptools.command.easy_install:main 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] [setuptools.file_finders]
svn_cvs = setuptools.command.sdist:_default_revctrl svn_cvs = setuptools.command.sdist:_default_revctrl
......
...@@ -46,7 +46,7 @@ except ImportError: ...@@ -46,7 +46,7 @@ except ImportError:
args = [quote(arg) for arg in args] args = [quote(arg) for arg in args]
return os.spawnl(os.P_WAIT, sys.executable, *args) == 0 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/" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
SETUPTOOLS_PKG_INFO = """\ SETUPTOOLS_PKG_INFO = """\
Metadata-Version: 1.0 Metadata-Version: 1.0
......
#!/bin/sh #!/bin/sh
export VERSION="0.6.2" export VERSION="0.6.3"
# creating the releases # creating the releases
rm -rf dist rm -rf dist
...@@ -7,6 +7,6 @@ rm -rf dist ...@@ -7,6 +7,6 @@ rm -rf dist
# now preparing the source release # now preparing the source release
python2.6 setup.py -q egg_info -RDb '' sdist register upload 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/ scp distribute_setup.py ziade.org:nightly/build/
...@@ -36,7 +36,7 @@ init_path = convert_path('setuptools/command/__init__.py') ...@@ -36,7 +36,7 @@ init_path = convert_path('setuptools/command/__init__.py')
exec(open(init_path).read(), d) exec(open(init_path).read(), d)
SETUP_COMMANDS = d['__all__'] SETUP_COMMANDS = d['__all__']
VERSION = "0.6.2" VERSION = "0.6.3"
from setuptools import setup, find_packages from setuptools import setup, find_packages
import sys import sys
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment