[Python-checkins] python/nondist/sandbox/setuptools ez_setup.py, 1.34, 1.35 setup.py, 1.45, 1.46 setuptools.txt, 1.41, 1.42

pje@users.sourceforge.net pje at users.sourceforge.net
Mon Oct 17 04:44:43 CEST 2005


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

Modified Files:
	ez_setup.py setup.py setuptools.txt 
Log Message:
Prep for 0.6a6 release.


Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- ez_setup.py	29 Sep 2005 17:05:43 -0000	1.34
+++ ez_setup.py	17 Oct 2005 02:44:39 -0000	1.35
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
-DEFAULT_VERSION = "0.6a5"
+DEFAULT_VERSION = "0.6a6"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- setup.py	17 Oct 2005 02:26:39 -0000	1.45
+++ setup.py	17 Oct 2005 02:44:39 -0000	1.46
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
 
-VERSION = "0.6a5"
+VERSION = "0.6a6"
 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.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- setuptools.txt	29 Sep 2005 17:05:43 -0000	1.41
+++ setuptools.txt	17 Oct 2005 02:44:39 -0000	1.42
@@ -221,6 +221,13 @@
     your build process; for example, extensions that process setup() arguments
     and turn them into EGG-INFO metadata files.
 
+    (Note: projects listed in ``setup_requires`` will NOT be automatically
+    installed on the system where the setup script is being run.  They are
+    simply downloaded to the setup directory if they're not locally available
+    already.  If you want them to be installed, as well as being available
+    when the setup script is run, you should add them to ``install_requires``
+    **and** ``setup_requires``.)
+
 ``namespace_packages``
     A list of strings naming the project's "namespace packages".  A namespace
     package is a package that may be split across multiple project



More information about the Python-checkins mailing list