[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.11, 1.12 setup.py, 1.12, 1.13

pje@users.sourceforge.net pje at users.sourceforge.net
Tue Jun 14 03:30:01 CEST 2005


Update of /cvsroot/python/python/nondist/sandbox/setuptools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6326

Modified Files:
	EasyInstall.txt setup.py 
Log Message:
Update to version 0.4a3


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- EasyInstall.txt	12 Jun 2005 21:47:32 -0000	1.11
+++ EasyInstall.txt	14 Jun 2005 01:29:59 -0000	1.12
@@ -62,7 +62,7 @@
 **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 @@
  * 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
  

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- setup.py	12 Jun 2005 21:47:33 -0000	1.12
+++ setup.py	14 Jun 2005 01:29:59 -0000	1.13
@@ -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(



More information about the Python-checkins mailing list