diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-13 16:16:58 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-13 16:16:58 -0400 |
commit | 21ba9de1f81928b82344d3f61031cb14f1451cdc (patch) | |
tree | c2d0b13e6922719a850dc05c4e800f48cf3ae1c9 | |
parent | 9298e5f23a1edbbab4b2da4ca9e9496b8e69c0dc (diff) | |
download | external_python_setuptools-21ba9de1f81928b82344d3f61031cb14f1451cdc.tar.gz external_python_setuptools-21ba9de1f81928b82344d3f61031cb14f1451cdc.tar.bz2 external_python_setuptools-21ba9de1f81928b82344d3f61031cb14f1451cdc.zip |
Bumped to 0.9.1 in preparation for next release.
-rw-r--r-- | docs/conf.py | 4 | ||||
-rw-r--r-- | ez_setup.py | 2 | ||||
-rwxr-xr-x | setup.py | 6 | ||||
-rw-r--r-- | setuptools/__init__.py | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py index d99639d6..3c71f326 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = '2009-2013, The fellowship of the packaging' # built documents. # # The short X.Y version. -version = '0.10' +version = '0.9.1' # The full version, including alpha/beta/rc tags. -release = '0.10' +release = '0.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/ez_setup.py b/ez_setup.py index 14eef924..0b11f1a7 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -28,7 +28,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "0.10" +DEFAULT_VERSION = "0.9.1" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): @@ -18,7 +18,7 @@ exec(init_file.read(), d) init_file.close() SETUP_COMMANDS = d['__all__'] -VERSION = "0.10" +VERSION = "0.9.1" from setuptools import setup, find_packages from setuptools.command.build_py import build_py as _build_py @@ -181,10 +181,10 @@ setup_params = dict( "ssl:sys_platform=='win32'": "wincertstore==0.1", "ssl:sys_platform=='win32' and python_version=='2.4'": "ctypes==1.0.2", "ssl:python_version in '2.4, 2.5'":"ssl==1.16", - "certs": "certifi==0.0.10", + "certs": "certifi==0.0.9.1", }, dependency_links = [ - 'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.10.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec', + 'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.9.1.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec', 'https://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb', 'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c', 'https://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc', diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 9158fd75..7da5a3bd 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -8,7 +8,7 @@ from distutils.util import convert_path import os import sys -__version__ = '0.10' +__version__ = '0.9.1' __all__ = [ 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', 'find_packages' |