aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-03-04 00:02:22 +0000
committerPJ Eby <distutils-sig@python.org>2006-03-04 00:02:22 +0000
commitd2416feac24edccc11352f436c2a6ca3b5552384 (patch)
tree2d0f4d75cf76577316c8c71b29f9c6ac8d053e75
parent087c9f1eb3e1b64b0d9cdb43d0946dd54d6885e5 (diff)
downloadexternal_python_setuptools-d2416feac24edccc11352f436c2a6ca3b5552384.tar.gz
external_python_setuptools-d2416feac24edccc11352f436c2a6ca3b5552384.tar.bz2
external_python_setuptools-d2416feac24edccc11352f436c2a6ca3b5552384.zip
Record recent changes in the release notes.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042824
-rwxr-xr-xEasyInstall.txt3
-rwxr-xr-xsetuptools.txt17
2 files changed, 19 insertions, 1 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index a01457af..f457150e 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -1065,6 +1065,9 @@ Known Issues
* There's no automatic retry for borked Sourceforge mirrors, which can easily
time out or be missing a file.
+0.6a11
+ * Don't recursively traverse subdirectories given to ``--find-links``.
+
0.6a10
* Added exhaustive testing of the install directory, including a spawn test
for ``.pth`` file support, and directory writability/existence checks. This
diff --git a/setuptools.txt b/setuptools.txt
index a70bb759..0cd40dfb 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -1890,7 +1890,8 @@ use this option:
This option is automatically in effect when ``install`` is invoked by another
distutils command, so that commands like ``bdist_wininst`` and ``bdist_rpm``
-will create system packages of eggs.
+will create system packages of eggs. It is also automatically in effect if
+you specify the ``--root`` option.
``install_egg_info`` - Install an ``.egg-info`` directory in ``site-packages``
@@ -2350,6 +2351,20 @@ XXX
Release Notes/Change History
----------------------------
+0.6a11
+ * Made ``--single-version-externally-managed`` automatic when ``--root`` is
+ used, so that most system packagers won't require special support for
+ setuptools.
+
+ * Fixed ``setup_requires``, ``tests_require``, etc. not using ``setup.cfg`` or
+ other configuration files for their option defaults when installing, and
+ also made the install use ``--multi-version`` mode so that the project
+ directory doesn't need to support .pth files.
+
+ * ``MANIFEST.in`` is now forcibly closed when any errors occur while reading
+ it. Previously, the file could be left open and the actual error would be
+ masked by problems trying to remove the open file on Windows systems.
+
0.6a10
* Fixed the ``develop`` command ignoring ``--find-links``.