diff options
author | PJ Eby <distutils-sig@python.org> | 2005-08-06 19:29:49 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-08-06 19:29:49 +0000 |
commit | 8afe820f59c3b63795bd235f2800b0e1329eb7e1 (patch) | |
tree | a1d513446260cf010850a1a1e52a7d1815bb40a2 /setuptools.txt | |
parent | 8a29467d941a7983d5f6eadc5c0e1624417944b6 (diff) | |
download | external_python_setuptools-8afe820f59c3b63795bd235f2800b0e1329eb7e1.tar.gz external_python_setuptools-8afe820f59c3b63795bd235f2800b0e1329eb7e1.tar.bz2 external_python_setuptools-8afe820f59c3b63795bd235f2800b0e1329eb7e1.zip |
Got rid of the no-longer meaningful "depends" command. Consolidated the
replacement of the "install" command so that installation is always via
easy_install, but doesn't use the previous kludgy intereception technique.
Allow ``extra_path`` to be set, but ignore it, so that when easy_install
wraps a package that uses it, there won't be any confusion as to the
desired installation location.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041181
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/setuptools.txt b/setuptools.txt index 7f9c8551..872830aa 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -1713,6 +1713,10 @@ Release Notes/Change History using entry points, so that they are extensible by third-party packages. See `Creating distutils Extensions`_ above for more details. + * The vestigial ``depends`` command has been removed. It was never finished + or documented, and never would have worked without EasyInstall - which it + pre-dated and was never compatible with. + * Many ``pkg_resources`` API changes and enhancements: * Added ``EntryPoint``, ``get_entry_map``, ``load_entry_point``, and @@ -1918,9 +1922,7 @@ Release Notes/Change History see the ``setuptools.dist.Distribution`` class. * Setup scripts using setuptools now always install using ``easy_install`` - internally, for ease of uninstallation and upgrading. Note: you *must* - remove any ``extra_path`` argument from your setup script, as it conflicts - with the proper functioning of the ``easy_install`` command. + internally, for ease of uninstallation and upgrading. * ``pkg_resources.AvailableDistributions.resolve()`` and related methods now accept an ``installer`` argument: a callable taking one argument, a |