Commit 17bc3630 authored by Jason R. Coombs's avatar Jason R. Coombs

Update versions in preparation for an 0.7b1 release

parent 40da992b
...@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging' ...@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.6.40' version = '0.7b1'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.6.40' release = '0.7b1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -47,7 +47,7 @@ except ImportError: ...@@ -47,7 +47,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.40" DEFAULT_VERSION = "0.7b1"
DEFAULT_URL = "http://pypi.python.org/packages/source/s/setuptools/" DEFAULT_URL = "http://pypi.python.org/packages/source/s/setuptools/"
......
...@@ -22,8 +22,7 @@ try: ...@@ -22,8 +22,7 @@ try:
except Exception: except Exception:
pass pass
VERSION = '0.6.40' VERSION = '0.7b1'
PACKAGE_INDEX = 'https://pypi.python.org/pypi'
PACKAGE_INDEX = 'https://pypi.python.org/pypi' PACKAGE_INDEX = 'https://pypi.python.org/pypi'
def get_next_version(): def get_next_version():
...@@ -33,8 +32,7 @@ def get_next_version(): ...@@ -33,8 +32,7 @@ def get_next_version():
NEXT_VERSION = get_next_version() NEXT_VERSION = get_next_version()
files_with_versions = ('docs/conf.py', 'setup.py', 'release.py', files_with_versions = 'docs/conf.py', 'setup.py', 'release.py', 'ez_setup.py'
'README.txt', 'distribute_setup.py')
def get_repo_name(): def get_repo_name():
""" """
......
...@@ -46,7 +46,7 @@ exec(init_file.read(), d) ...@@ -46,7 +46,7 @@ exec(init_file.read(), d)
init_file.close() init_file.close()
SETUP_COMMANDS = d['__all__'] SETUP_COMMANDS = d['__all__']
VERSION = "0.6.40" VERSION = "0.7b1"
from setuptools import setup, find_packages from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py from setuptools.command.build_py import build_py as _build_py
......
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