diff options
author | PJ Eby <distutils-sig@python.org> | 2006-05-12 22:40:05 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-05-12 22:40:05 +0000 |
commit | 16f594d2d958546994ebf77f41317b54dca60af5 (patch) | |
tree | ce32412e5d623206e511b10db1a95ed2189e7e64 | |
parent | 27874986d6539405fc971e9cf70563a096ee5b83 (diff) | |
download | external_python_setuptools-16f594d2d958546994ebf77f41317b54dca60af5.tar.gz external_python_setuptools-16f594d2d958546994ebf77f41317b54dca60af5.tar.bz2 external_python_setuptools-16f594d2d958546994ebf77f41317b54dca60af5.zip |
Document 0.6b1 fixes
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4045985
-rwxr-xr-x | EasyInstall.txt | 14 | ||||
-rwxr-xr-x | pkg_resources.txt | 3 | ||||
-rwxr-xr-x | setuptools.txt | 11 |
3 files changed, 23 insertions, 5 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index f2682dda..cac823a2 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -1096,11 +1096,21 @@ Release Notes/Change History ============================ 0.6b1 + * Better ambiguity management: accept ``#egg`` name/version even if processing + what appears to be a correctly-named distutils file, and ignore ``.egg`` + files with no ``-``, since valid Python ``.egg`` files always have a version + number (but Scheme eggs often don't). + + * Support ``file://`` links to directories in ``--find-links``, so that + easy_install can build packages from local source checkouts. + * Added automatic retry for Sourceforge mirrors. The new download process is to first just try dl.sourceforge.net, then randomly select mirror IPs and remove ones that fail, until something works. The removed IPs stay removed for the remainder of the run. + * Ignore bdist_dumb distributions when looking at download URLs. + 0.6a11 * Process ``dependency_links.txt`` if found in a distribution, by adding the URLs to the list for scanning. @@ -1187,7 +1197,7 @@ Release Notes/Change History 0.6a8 * Update for changed SourceForge mirror format - + * Fixed not installing dependencies for some packages fetched via Subversion * Fixed dependency installation with ``--always-copy`` not using the same @@ -1232,7 +1242,7 @@ Release Notes/Change History needed package as the default version of that package. * Fixed a problem parsing version numbers in ``#egg=`` links. - + 0.6a2 * EasyInstall can now install "console_scripts" defined by packages that use ``setuptools`` and define appropriate entry points. On Windows, console diff --git a/pkg_resources.txt b/pkg_resources.txt index fff4fa99..caca4317 100755 --- a/pkg_resources.txt +++ b/pkg_resources.txt @@ -1667,6 +1667,9 @@ Release Notes/Change History ``get_build_platform()`` to work around a Mac versioning problem that caused the behavior of ``compatible_platforms()`` to be platform specific. + * Fix entry point parsing when a standalone module name has whitespace + between it and the extras. + 0.6a11 * Added ``ExtractionError`` and ``ResourceManager.extraction_error()`` so that cache permission problems get a more user-friendly explanation of the diff --git a/setuptools.txt b/setuptools.txt index 343d19f8..b0f6bb5a 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -349,7 +349,7 @@ unless you need the associated ``setuptools`` feature. has an ``additional_tests()`` function, it is called and the results are added to the tests to be run. If the named suite is a package, any submodules and subpackages are recursively added to the overall test suite. - + Specifying this argument enables use of the `test`_ command to run the specified test suite, e.g. via ``setup.py test``. See the section on the `test`_ command below for more details. @@ -1041,7 +1041,7 @@ command; see the section on the `develop`_ command below for more details. Note that you can also apply setuptools commands to non-setuptools projects, using commands like this:: - + python -c "import setuptools; execfile('setup.py')" develop That is, you can simply list the normal setup commands and options following @@ -2454,7 +2454,7 @@ A few important points for writing revision control file finders: with the absence of needed programs (i.e., ones belonging to the revision control system itself. It *may*, however, use ``distutils.log.warn()`` to inform the user of the missing program(s). - + Subclassing ``Command`` ----------------------- @@ -2498,6 +2498,11 @@ XXX Release Notes/Change History ---------------------------- +0.6b1 + * Strip ``module`` from the end of compiled extension modules when computing + the name of a ``.py`` loader/wrapper. (Python's import machinery ignores + this suffix when searching for an extension module.) + 0.6a11 * Added ``test_loader`` keyword to support custom test loaders |