summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-10-17 02:44:39 +0000
committerPJ Eby <distutils-sig@python.org>2005-10-17 02:44:39 +0000
commit8f158d47596b45487e91a9c1869fb965b8c90d74 (patch)
tree064b85ffe45049baae3c402f456f76806ab6a8b0
parent1877d977ec93415fc69ffdc6b4870eccac4381b7 (diff)
downloadpython-setuptools-git-8f158d47596b45487e91a9c1869fb965b8c90d74.tar.gz
Prep for 0.6a6 release.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041264
-rwxr-xr-xez_setup.py2
-rwxr-xr-xsetup.py2
-rwxr-xr-xsetuptools.txt7
-rw-r--r--setuptools/__init__.py2
4 files changed, 10 insertions, 3 deletions
diff --git a/ez_setup.py b/ez_setup.py
index 248f4078..23841bae 100755
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``.
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 = {
diff --git a/setup.py b/setup.py
index 4a2d4c71..f9121521 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
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
diff --git a/setuptools.txt b/setuptools.txt
index df2a613e..66e99048 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -221,6 +221,13 @@ unless you need the associated ``setuptools`` feature.
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
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index aa3f4e32..f671acc9 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -8,7 +8,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
-__version__ = '0.6a5'
+__version__ = '0.6a6'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'