summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-12 16:09:00 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-12 16:09:00 +0000
commit878bea056e4a1037728d5061e2e6ce4b1eaaade8 (patch)
tree6f4d5cdd1a3ba0930c4e13ba62df1492dcc7219c /setuptools
parent171e2214b1c4d7fa62e6007e8b35c773be71dfd5 (diff)
downloadpython-setuptools-git-878bea056e4a1037728d5061e2e6ce4b1eaaade8.tar.gz
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 'setuptools')
-rw-r--r--setuptools/__init__.py2
-rwxr-xr-xsetuptools/command/develop.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 1cd86f72..df107d81 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.5a10'
+__version__ = '0.5a11'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py
index 9ade5aaf..a757b2e5 100755
--- a/setuptools/command/develop.py
+++ b/setuptools/command/develop.py
@@ -24,6 +24,8 @@ class develop(easy_install):
command_consumes_arguments = False # override base
+ negative_opt = {}
+
def run(self):
if self.uninstall:
self.multi_version = True
@@ -37,8 +39,6 @@ class develop(easy_install):
-
-
def finalize_options(self):
ei = self.get_finalized_command("egg_info")
self.args = [ei.egg_name]