[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.41, 1.42 ez_setup.py, 1.19, 1.20 setup.py, 1.30, 1.31 setuptools.txt, 1.13, 1.14

pje@users.sourceforge.net pje at users.sourceforge.net
Sat Jul 16 18:17:32 CEST 2005


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

Modified Files:
	EasyInstall.txt ez_setup.py setup.py setuptools.txt 
Log Message:
prep for 0.5a13 release


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- EasyInstall.txt	15 Jul 2005 04:10:12 -0000	1.41
+++ EasyInstall.txt	16 Jul 2005 16:17:29 -0000	1.42
@@ -67,7 +67,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.5a12"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a13"
 
 **Example 3**. Download a source distribution from a specified URL,
 automatically building and installing it::

Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- ez_setup.py	13 Jul 2005 00:10:00 -0000	1.19
+++ ez_setup.py	16 Jul 2005 16:17:29 -0000	1.20
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a12"
+DEFAULT_VERSION = "0.5a13"
 DEFAULT_URL     = "http://www.python.org/packages/source/s/setuptools/"
 
 import sys, os

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- setup.py	13 Jul 2005 00:10:00 -0000	1.30
+++ setup.py	16 Jul 2005 16:17:29 -0000	1.31
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.5a12"
+VERSION = "0.5a13"
 
 from setuptools import setup, find_packages
 

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- setuptools.txt	13 Jul 2005 00:10:00 -0000	1.13
+++ setuptools.txt	16 Jul 2005 16:17:29 -0000	1.14
@@ -1332,6 +1332,9 @@
 Release Notes/Change History
 ----------------------------
 
+0.5a13
+ * Fixed a bug in resource extraction from nested packages in a zipped egg.
+
 0.5a12
  * The zip-safety scanner now checks for modules that might be used with
    ``python -m``, and marks them as unsafe for zipping, since Python 2.4 can't



More information about the Python-checkins mailing list