aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-11-02 23:55:34 +0000
committerPJ Eby <distutils-sig@python.org>2005-11-02 23:55:34 +0000
commit25d3d2a756deba20be559ff5f46e8621779ad226 (patch)
treec429126f826fa8080f7d1e447e3dd2627496d01d /setup.py
parent1611cf8caa724b24b5d44ae5f45e91fc1f70291a (diff)
downloadexternal_python_setuptools-25d3d2a756deba20be559ff5f46e8621779ad226.tar.gz
external_python_setuptools-25d3d2a756deba20be559ff5f46e8621779ad226.tar.bz2
external_python_setuptools-25d3d2a756deba20be559ff5f46e8621779ad226.zip
0.6a7 bugfix release
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041377
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index f9121521..5e6bd436 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.6a6"
+VERSION = "0.6a7"
from setuptools import setup, find_packages
import sys
from setuptools.command import __all__ as SETUP_COMMANDS
@@ -43,7 +43,7 @@ setup(
entry_points = {
"distutils.commands" : [
"%(cmd)s = setuptools.command.%(cmd)s:%(cmd)s" % locals()
- for cmd in SETUP_COMMANDS if cmd!="build_py" or sys.version<"2.4"
+ for cmd in SETUP_COMMANDS
],
"distutils.setup_keywords": [
"eager_resources = setuptools.dist:assert_string_list",