Commit 0c5da9d6 authored by PJ Eby's avatar PJ Eby

Update to version 0.4a3

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041059
parent 4c58e9e0
......@@ -62,7 +62,7 @@ version, and automatically downloading, building, and installing it::
**Example 2**. Install or upgrade a package by name and version by finding
links on a given "download page"::
easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.4a2"
easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.4a3"
**Example 3**. Download a source distribution from a specified URL,
automatically building and installing it::
......@@ -385,9 +385,20 @@ Known Issues
* There's no automatic retry for borked Sourceforge mirrors, which can easily
time out or be missing a file.
* EasyInstall does not yet respect the distutils "verbose/quite" and "dry-run"
* EasyInstall does not yet respect the distutils "verbose/quiet" and "dry-run"
options, even though it accepts them.
0.4a3
* Fixed scripts not being able to see a ``__file__`` variable in ``__main__``
* Fixed a problem with ``resource_isdir()`` implementation that was introduced
in 0.4a2.
* Add progress messages to the search/download process so that you can tell
what URLs it's reading to find download links. (Hopefully, this will help
people report out-of-date and broken links to package authors, and to tell
when they've asked for a package that doesn't exist.)
0.4a2
* Added support for installing scripts
......
#!/usr/bin/env python
"""Distutils setup file, used to install or test 'setuptools'"""
VERSION = "0.4a2"
VERSION = "0.4a3"
from setuptools import setup, find_packages, Require
setup(
......
......@@ -8,7 +8,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
__version__ = '0.4a2'
__version__ = '0.4a3'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
......
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