diff options
-rwxr-xr-x | EasyInstall.txt | 2 | ||||
-rwxr-xr-x | ez_setup.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rwxr-xr-x | setuptools.txt | 3 | ||||
-rw-r--r-- | setuptools/__init__.py | 2 |
5 files changed, 7 insertions, 4 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index 06173289..49bd4379 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -67,7 +67,7 @@ version, and automatically downloading, building, and installing it:: **Example 2**. Install or upgrade a package by name and version by finding links on a given "download page":: - easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a12" + easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a13" **Example 3**. Download a source distribution from a specified URL, automatically building and installing it:: diff --git a/ez_setup.py b/ez_setup.py index 9d2bc251..bc78d5e4 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``. This file can also be run as a script to install or upgrade setuptools. """ -DEFAULT_VERSION = "0.5a12" +DEFAULT_VERSION = "0.5a13" DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/" import sys, os @@ -15,7 +15,7 @@ def get_description(): f.close() return ''.join(lines) -VERSION = "0.5a12" +VERSION = "0.5a13" from setuptools import setup, find_packages diff --git a/setuptools.txt b/setuptools.txt index 12d52179..8e364bf6 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -1332,6 +1332,9 @@ XXX Release Notes/Change History ---------------------------- +0.5a13 + * Fixed a bug in resource extraction from nested packages in a zipped egg. + 0.5a12 * The zip-safety scanner now checks for modules that might be used with ``python -m``, and marks them as unsafe for zipping, since Python 2.4 can't diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 6b81f69f..36c1e3d8 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -7,7 +7,7 @@ from distutils.core import Command as _Command from distutils.util import convert_path import os.path -__version__ = '0.5a12' +__version__ = '0.5a13' __all__ = [ 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', 'find_packages' |