[Python-checkins] commit of r41381 - in sandbox/trunk/setuptools: . setuptools

phillip.eby@python.org phillip.eby at python.org
Thu Nov 3 03:34:26 CET 2005


Author: phillip.eby
Date: Thu Nov  3 03:34:26 2005
New Revision: 41381

Modified:
   sandbox/trunk/setuptools/ez_setup.py
   sandbox/trunk/setuptools/setup.cfg
   sandbox/trunk/setuptools/setup.py
   sandbox/trunk/setuptools/setuptools.txt
   sandbox/trunk/setuptools/setuptools/__init__.py
Log:
Switch setuptools to use 'dev-rNNNN' version tags by default, and configure
so that people can use 'ez_setup.py setuptools==dev' to fetch the latest
in-development version.


Modified: sandbox/trunk/setuptools/ez_setup.py
==============================================================================
--- sandbox/trunk/setuptools/ez_setup.py	(original)
+++ sandbox/trunk/setuptools/ez_setup.py	Thu Nov  3 03:34:26 2005
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
-DEFAULT_VERSION = "0.6a7"
+DEFAULT_VERSION = "0.6a8"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {

Modified: sandbox/trunk/setuptools/setup.cfg
==============================================================================
--- sandbox/trunk/setuptools/setup.cfg	(original)
+++ sandbox/trunk/setuptools/setup.cfg	Thu Nov  3 03:34:26 2005
@@ -3,3 +3,6 @@
 develop = develop
 source = register sdist binary
 
+[egg_info]
+tag_build = dev
+tag_svn_revision = 1

Modified: sandbox/trunk/setuptools/setup.py
==============================================================================
--- sandbox/trunk/setuptools/setup.py	(original)
+++ sandbox/trunk/setuptools/setup.py	Thu Nov  3 03:34:26 2005
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
 
-VERSION = "0.6a7"
+VERSION = "0.6a8"
 from setuptools import setup, find_packages
 import sys
 from setuptools.command import __all__ as SETUP_COMMANDS

Modified: sandbox/trunk/setuptools/setuptools.txt
==============================================================================
--- sandbox/trunk/setuptools/setuptools.txt	(original)
+++ sandbox/trunk/setuptools/setuptools.txt	Thu Nov  3 03:34:26 2005
@@ -62,6 +62,10 @@
 * Create extensible applications and frameworks that automatically discover
   extensions, using simple "entry points" declared in a project's setup script.
 
+In addition to the PyPI downloads, the development version of ``setuptools``
+is available from the `Python SVN sandbox`_.
+
+.. _Python SVN sandbox: http://svn.python.org/projects/sandbox/trunk/setuptools/#egg=setuptools-dev
 
 .. contents:: **Table of Contents**
 
@@ -98,13 +102,13 @@
 setuptools being present; if so, you must be sure to delete it entirely, along
 with the old ``pkg_resources`` module if it's present on ``sys.path``.
 
-To get the in-development version of setuptools, run::
+To get the in-development version of setuptools, first install a stable version
+using the instructions above.  Then run::
 
-    cvs -d:pserver:anonymous at cvs.sourceforge.net:/cvsroot/python login
-    cvs -z3 -d:pserver:anonymous at cvs.sourceforge.net:/cvsroot/python \
-        co -d setuptools python/nondist/sandbox/setuptools
+    ez_setup.py setuptools==dev
 
-You can then install it using the usual "setup.py install" incantation.
+This will download and install the latest development (i.e. unstable) version
+of setuptools from the Python Subversion sandbox.
 
 (Note that ``setuptools`` *must* be installed as an egg directory; it will not
 operate correctly otherwise.  If you are unable to install to a valid

Modified: sandbox/trunk/setuptools/setuptools/__init__.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/__init__.py	(original)
+++ sandbox/trunk/setuptools/setuptools/__init__.py	Thu Nov  3 03:34:26 2005
@@ -8,7 +8,7 @@
 from distutils.util import convert_path
 import os.path
 
-__version__ = '0.6a7'
+__version__ = '0.6a8'
 __all__ = [
     'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
     'find_packages'


More information about the Python-checkins mailing list