diff options
author | PJ Eby <distutils-sig@python.org> | 2008-09-24 16:55:01 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2008-09-24 16:55:01 +0000 |
commit | 36c98548d8ee94b11cbd59910678683f2fed3098 (patch) | |
tree | bdbdf13f4912b8f9a0fa7bc20bec93703f36c6a5 | |
parent | f99ef3f240562a914fe3d7d7b1f5f91c0d0d8762 (diff) | |
download | external_python_setuptools-36c98548d8ee94b11cbd59910678683f2fed3098.tar.gz external_python_setuptools-36c98548d8ee94b11cbd59910678683f2fed3098.tar.bz2 external_python_setuptools-36c98548d8ee94b11cbd59910678683f2fed3098.zip |
Updated release notes
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4066600
-rwxr-xr-x | EasyInstall.txt | 23 | ||||
-rwxr-xr-x | setuptools.txt | 18 |
2 files changed, 34 insertions, 7 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index 1cd81486..5fae5fad 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -6,12 +6,9 @@ Easy Install is a python module (``easy_install``) bundled with ``setuptools`` that lets you automatically download, build, install, and manage Python packages. -(Please share your experiences with us! Whether you encountered success or -difficulty installing a particular package, please add your notes to the -`Experience Reports <http://peak.telecommunity.com/DevCenter/PackageNotes>`_ -page. You'll need to register for a Wiki ID if you don't already have one; you -can do that from the `User Preferences -<http://peak.telecommunity.com/DevCenter/UserPreferences>`_ page. Thanks!) +(Please share your experiences with us! If you encounter difficulty installing +a package, please submit a ticket via the `Setuptools Bug Tracker +<http://bugs.python.org/setuptools/>`_ page. Thanks!) (Also, if you'd like to learn about how you can use ``setuptools`` to make your own packages work better with EasyInstall, or provide EasyInstall-like features @@ -1232,6 +1229,20 @@ Release Notes/Change History * Changes for Jython compatibility + * Improved error message when a requirement is also a directory name, but the + specified directory is not a source package. + + * Fixed ``--allow-hosts`` option blocking ``file:`` URLs + + * Fixed HTTP SVN detection failing when the page title included a project + name (e.g. on SourceForge-hosted SVN) + + * Fix Jython script installation to handle ``#!`` lines better when + ``sys.executable`` is a script. + + * Removed use of deprecated ``md5`` module if ``hashlib`` is available + + 0.6c7 * ``ftp:`` download URLs now work correctly. diff --git a/setuptools.txt b/setuptools.txt index 47c5bafb..2e0b270d 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -2618,7 +2618,8 @@ Release Notes/Change History * Updated Pyrex support to work with Pyrex 0.9.6 and higher. - * Minor changes for Jython compatibility + * Minor changes for Jython compatibility, including skipping tests that can't + work on Jython. * Fixed not installing eggs in ``install_requires`` if they were also used for ``setup_requires`` or ``tests_require``. @@ -2633,6 +2634,21 @@ Release Notes/Change History * Support Subversion 1.5 + * Removed use of deprecated ``md5`` module if ``hashlib`` is available + + * Fixed ``bdist_wininst upload`` trying to upload the ``.exe`` twice + + * Fixed ``bdist_egg`` putting a ``native_libs.txt`` in the source package's + ``.egg-info``, when it should only be in the built egg's ``EGG-INFO``. + + * Ensure that _full_name is set on all shared libs before extensions are + checked for shared lib usage. (Fixes a bug in the experimental shared + library build support.) + + * Fix to allow unpacked eggs containing native libraries to fail more + gracefully under Google App Engine (with an ``ImportError`` loading the + C-based module, instead of getting a ``NameError``). + 0.6c7 * Fixed ``distutils.filelist.findall()`` crashing on broken symlinks, and ``egg_info`` command failing on new, uncommitted SVN directories. |