diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-12 16:09:00 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-12 16:09:00 +0000 |
commit | 878bea056e4a1037728d5061e2e6ce4b1eaaade8 (patch) | |
tree | 6f4d5cdd1a3ba0930c4e13ba62df1492dcc7219c /setup.py | |
parent | 171e2214b1c4d7fa62e6007e8b35c773be71dfd5 (diff) | |
download | external_python_setuptools-878bea056e4a1037728d5061e2e6ce4b1eaaade8.tar.gz external_python_setuptools-878bea056e4a1037728d5061e2e6ce4b1eaaade8.tar.bz2 external_python_setuptools-878bea056e4a1037728d5061e2e6ce4b1eaaade8.zip |
Fix breakage of the "develop" command that was caused by the addition of
``--always-unzip`` to the ``easy_install`` command. Bump version for bug
fix release.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041120
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ def get_description(): f.close() return ''.join(lines) -VERSION = "0.5a10" +VERSION = "0.5a11" from setuptools import setup, find_packages |