diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-18 01:39:45 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-18 01:39:45 +0000 |
| commit | c7214855992b9657d6a490f46764ffaf4089c1cb (patch) | |
| tree | 940c06d0e3d88ace603a430c4bf3f6f98b94c204 /EasyInstall.txt | |
| parent | 61a0e7109e42e844dcda2637fa3bbf5d1f897938 (diff) | |
| download | python-setuptools-git-c7214855992b9657d6a490f46764ffaf4089c1cb.tar.gz | |
Massive API refactoring; see setuptools.txt changelog for details. Also,
add ``#egg=project-version`` link support, and docs on how to make your
package available for EasyInstall to find.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041135
Diffstat (limited to 'EasyInstall.txt')
| -rwxr-xr-x | EasyInstall.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index fb72b14c..33e23f09 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -623,6 +623,22 @@ Known Issues Made ``easy-install.pth`` work in platform-specific alternate site directories (e.g. ``~/Library/Python/2.x/site-packages``). + * If you manually delete the current version of a package, the next run of + EasyInstall against the target directory will now remove the stray entry + from the ``easy-install.pth``file. + + * EasyInstall now recognizes URLs with a ``#egg=project_name`` fragment ID + as pointing to the named project's source checkout. Such URLs have a lower + match precedence than any other kind of distribution, so they'll only be + used if they have a higher version number than any other available + distribution. (Future versions may allow you to specify that you want to + use source checkouts instead of other kinds of distributions.) The ``#egg`` + fragment can contain a version if it's formatted as ``#egg=proj-ver``, + where ``proj`` is the project name, and ``ver`` is the version number. You + *must* use the format for these values that the ``bdist_egg`` command uses; + i.e., all non-alphanumeric runs must be condensed to single underscore + characters. + 0.5a12 * Fix ``python -m easy_install`` not working due to setuptools being installed as a zipfile. Update safety scanner to check for modules that might be used |
