[Python-checkins] r42824 - sandbox/trunk/setuptools/EasyInstall.txt sandbox/trunk/setuptools/setuptools.txt

phillip.eby python-checkins at python.org
Sat Mar 4 01:02:30 CET 2006


Author: phillip.eby
Date: Sat Mar  4 01:02:22 2006
New Revision: 42824

Modified:
   sandbox/trunk/setuptools/EasyInstall.txt
   sandbox/trunk/setuptools/setuptools.txt
Log:
Record recent changes in the release notes.


Modified: sandbox/trunk/setuptools/EasyInstall.txt
==============================================================================
--- sandbox/trunk/setuptools/EasyInstall.txt	(original)
+++ sandbox/trunk/setuptools/EasyInstall.txt	Sat Mar  4 01:02:22 2006
@@ -1065,6 +1065,9 @@
  * 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

Modified: sandbox/trunk/setuptools/setuptools.txt
==============================================================================
--- sandbox/trunk/setuptools/setuptools.txt	(original)
+++ sandbox/trunk/setuptools/setuptools.txt	Sat Mar  4 01:02:22 2006
@@ -1890,7 +1890,8 @@
 
 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 @@
 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``.
 


More information about the Python-checkins mailing list