Commit 36c98548 authored by PJ Eby's avatar PJ Eby

Updated release notes

--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4066600
parent f99ef3f2
...@@ -6,12 +6,9 @@ Easy Install is a python module (``easy_install``) bundled with ``setuptools`` ...@@ -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 that lets you automatically download, build, install, and manage Python
packages. packages.
(Please share your experiences with us! Whether you encountered success or (Please share your experiences with us! If you encounter difficulty installing
difficulty installing a particular package, please add your notes to the a package, please submit a ticket via the `Setuptools Bug Tracker
`Experience Reports <http://peak.telecommunity.com/DevCenter/PackageNotes>`_ <http://bugs.python.org/setuptools/>`_ page. Thanks!)
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!)
(Also, if you'd like to learn about how you can use ``setuptools`` to make your (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 own packages work better with EasyInstall, or provide EasyInstall-like features
...@@ -1232,6 +1229,20 @@ Release Notes/Change History ...@@ -1232,6 +1229,20 @@ Release Notes/Change History
* Changes for Jython compatibility * 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 0.6c7
* ``ftp:`` download URLs now work correctly. * ``ftp:`` download URLs now work correctly.
......
...@@ -2618,7 +2618,8 @@ Release Notes/Change History ...@@ -2618,7 +2618,8 @@ Release Notes/Change History
* Updated Pyrex support to work with Pyrex 0.9.6 and higher. * 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 * Fixed not installing eggs in ``install_requires`` if they were also used for
``setup_requires`` or ``tests_require``. ``setup_requires`` or ``tests_require``.
...@@ -2633,6 +2634,21 @@ Release Notes/Change History ...@@ -2633,6 +2634,21 @@ Release Notes/Change History
* Support Subversion 1.5 * 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 0.6c7
* Fixed ``distutils.filelist.findall()`` crashing on broken symlinks, and * Fixed ``distutils.filelist.findall()`` crashing on broken symlinks, and
``egg_info`` command failing on new, uncommitted SVN directories. ``egg_info`` command failing on new, uncommitted SVN directories.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment