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 | 403e6845234a3eb83b5e2858edb5e204f6641842 (patch) | |
tree | 01e9f931f9a4924613e37efaeecf84eeaa3456ee /setuptools.txt | |
parent | d9cf1dca48e1ad0e14c06a89ab92ffd3dc9e9df8 (diff) | |
download | external_python_setuptools-403e6845234a3eb83b5e2858edb5e204f6641842.tar.gz external_python_setuptools-403e6845234a3eb83b5e2858edb5e204f6641842.tar.bz2 external_python_setuptools-403e6845234a3eb83b5e2858edb5e204f6641842.zip |
* 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)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4050659
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt index a2cce583..1474e335 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -2563,6 +2563,17 @@ XXX Release Notes/Change History ---------------------------- +0.6c1 + * 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. + 0.6b4 * Fix ``register`` not obeying name/version set by ``egg_info`` command, if ``egg_info`` wasn't explicitly run first on the same command line. |