[Python-checkins] python/nondist/sandbox/setuptools ez_setup.py, 1.33, 1.34 setup.py, 1.43, 1.44 setuptools.txt, 1.40, 1.41

pje@users.sourceforge.net pje at users.sourceforge.net
Thu Sep 29 19:05:46 CEST 2005


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

Modified Files:
	ez_setup.py setup.py setuptools.txt 
Log Message:
0.6a5 brown bag bug fix release.


Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- ez_setup.py	26 Sep 2005 00:46:00 -0000	1.33
+++ ez_setup.py	29 Sep 2005 17:05:43 -0000	1.34
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
-DEFAULT_VERSION = "0.6a4"
+DEFAULT_VERSION = "0.6a5"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {
@@ -28,6 +28,8 @@
     'setuptools-0.6a3-py2.4.egg': 'd95453d525a456d6c23e7a5eea89a063',
     'setuptools-0.6a4-py2.3.egg': 'e958cbed4623bbf47dd1f268b99d7784',
     'setuptools-0.6a4-py2.4.egg': '7f33c3ac2ef1296f0ab4fac1de4767d8',
+    'setuptools-0.6a5-py2.3.egg': '748408389c49bcd2d84f6ae0b01695b1',
+    'setuptools-0.6a5-py2.4.egg': '999bacde623f4284bfb3ea77941d2627',
 }
 
 import sys, os

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- setup.py	29 Sep 2005 16:49:54 -0000	1.43
+++ setup.py	29 Sep 2005 17:05:43 -0000	1.44
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
 
-VERSION = "0.6a4"
+VERSION = "0.6a5"
 from setuptools import setup, find_packages
 import sys
 from setuptools.command import __all__ as SETUP_COMMANDS

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- setuptools.txt	24 Sep 2005 21:40:59 -0000	1.40
+++ setuptools.txt	29 Sep 2005 17:05:43 -0000	1.41
@@ -1859,6 +1859,9 @@
 Release Notes/Change History
 ----------------------------
 
+0.6a5
+ * Fixed missing gui/cli .exe files in distribution.  Fixed bugs in tests.
+ 
 0.6a3
  * Added ``gui_scripts`` entry point group to allow installing GUI scripts
    on Windows and other platforms.  (The special handling is only for Windows;



More information about the Python-checkins mailing list