aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-06-14 01:29:59 +0000
committerPJ Eby <distutils-sig@python.org>2005-06-14 01:29:59 +0000
commit0c5da9d627f035a365b94d43991db79b5d69efcf (patch)
tree0505af39e8a454a211b5e43237df28adb73183f1
parent4c58e9e0ef2cc1de12e7f813d843c4291f916ccc (diff)
downloadexternal_python_setuptools-0c5da9d627f035a365b94d43991db79b5d69efcf.tar.gz
external_python_setuptools-0c5da9d627f035a365b94d43991db79b5d69efcf.tar.bz2
external_python_setuptools-0c5da9d627f035a365b94d43991db79b5d69efcf.zip
Update to version 0.4a3
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041059
-rwxr-xr-xEasyInstall.txt15
-rwxr-xr-xsetup.py2
-rw-r--r--setuptools/__init__.py2
3 files changed, 15 insertions, 4 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index 66d2770c..ad3aa32e 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -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
diff --git a/setup.py b/setup.py
index 5dd81390..4334f52f 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/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(
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 38ab8a71..a6a1b7eb 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -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',