diff options
| author | PJ Eby <distutils-sig@python.org> | 2006-07-14 23:37:52 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2006-07-14 23:37:52 +0000 |
| commit | 2524ceffe26af49d076895920e149a4cdfd568d4 (patch) | |
| tree | 01e9f931f9a4924613e37efaeecf84eeaa3456ee /setuptools/command/develop.py | |
| parent | 1d80bb2fb54a1e000b7d7d679eb51257cf119511 (diff) | |
| download | python-setuptools-bitbucket-2524ceffe26af49d076895920e149a4cdfd568d4.tar.gz | |
* Fixed ``AttributeError`` when trying to download a ``setup_requires``
dependency when a distribution lacks a ``dependency_links`` setting.
* Made ``zip-safe`` and ``not-zip-safe`` flag files contain a single byte,
so as to play better with packaging tools that complain about zero-length
files.
* Made ``setup.py develop`` respect the ``--no-deps`` option, which it
previously was ignoring.
(bug fixes backported from trunk)
Diffstat (limited to 'setuptools/command/develop.py')
| -rwxr-xr-x | setuptools/command/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index f38506bb..49b5b3ac 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -78,7 +78,7 @@ class develop(easy_install): # postprocess the installed distro, fixing up .pth, installing scripts, # and handling requirements - self.process_distribution(None, self.dist) + self.process_distribution(None, self.dist, not self.no_deps) def uninstall_link(self): if os.path.exists(self.egg_link): |
