diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-17 19:54:38 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-17 19:54:38 +0000 |
commit | 61a0e7109e42e844dcda2637fa3bbf5d1f897938 (patch) | |
tree | 0a155b14856bbb41c70d7fae6b0528ebcc6cf7ca /setuptools.txt | |
parent | 63d507adccf8207a40e2b22a8c11f79efb83f56a (diff) | |
download | external_python_setuptools-61a0e7109e42e844dcda2637fa3bbf5d1f897938.tar.gz external_python_setuptools-61a0e7109e42e844dcda2637fa3bbf5d1f897938.tar.bz2 external_python_setuptools-61a0e7109e42e844dcda2637fa3bbf5d1f897938.zip |
The ``path`` attribute of ``Distribution`` objects is now ``location``,
because it isn't necessarily a filesystem path (and hasn't been for some
time now). ``Distribution`` objects now have an ``as_requirement()``
method that returns a ``Requirement`` for the distribution's project name
and version.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041134
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt index 01e8994e..d0c57525 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -1352,6 +1352,13 @@ Release Notes/Change History attribute for the project name they refer to. (Previously these were ``name`` and ``distname`` attributes.) + * The ``path`` attribute of ``Distribution`` objects is now ``location``, + because it isn't necessarily a filesystem path (and hasn't been for some + time now). + + * ``Distribution`` objects now have an ``as_requirement()`` method that + returns a ``Requirement`` for the distribution's project name and version. + 0.5a13 * Fixed a bug in resource extraction from nested packages in a zipped egg. |