Commit b3073b51 authored by PJ Eby's avatar PJ Eby

0.6b3 release

--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4046793
parent f01c17e9
......@@ -1096,7 +1096,8 @@ Release Notes/Change History
============================
0.6b3
* Fix local --find-links eggs not being copied except with --always-copy.
* Fix local ``--find-links`` eggs not being copied except with
``--always-copy``.
* Fix sometimes not detecting local packages installed outside of "site"
directories.
......
......@@ -14,18 +14,16 @@ the appropriate options to ``use_setuptools()``.
This file can also be run as a script to install or upgrade setuptools.
"""
import sys
DEFAULT_VERSION = "0.6b2"
DEFAULT_VERSION = "0.6b3"
DEFAULT_URL = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
md5_data = {
'setuptools-0.6a10-py2.3.egg': '162d8357f1aff2b0349c6c247ee62987',
'setuptools-0.6a10-py2.4.egg': '803a2d8db501c1ac3b5b6fb4e907f788',
'setuptools-0.6a11-py2.3.egg': 'd12bf8e13aaeb25c91350c8d77f01a71',
'setuptools-0.6a11-py2.4.egg': 'a95d5bc7a070aa1028bc4dcb5270b133',
'setuptools-0.6b1-py2.3.egg': '8822caf901250d848b996b7f25c6e6ca',
'setuptools-0.6b1-py2.4.egg': 'b79a8a403e4502fbb85ee3f1941735cb',
'setuptools-0.6b2-py2.3.egg': '5657759d8a6d8fc44070a9d07272d99b',
'setuptools-0.6b2-py2.4.egg': '4996a8d169d2be661fa32a6e52e4f82a',
'setuptools-0.6b3dev_r46791-py2.3.egg': 'e765a29566575ffac5d81cdf0c6f8db9',
'setuptools-0.6b3dev_r46791-py2.4.egg': 'd249c022ed029ad60d134bd998adc880',
}
import sys, os
......
......@@ -2499,11 +2499,11 @@ Release Notes/Change History
----------------------------
0.6b3
* Fix bdist_egg not including files in .egg-info subdirectories.
* Fix ``bdist_egg`` not including files in subdirectories of ``.egg-info``.
* Allow .py files found by the include_package_data option to be
* Allow ``.py`` files found by the ``include_package_data`` option to be
automatically included. Remove duplicate data file matches if both
include_package_data and package_data are used to refer to the same
``include_package_data`` and ``package_data`` are used to refer to the same
files.
0.6b1
......
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