summaryrefslogtreecommitdiff
path: root/weave/setup.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2005-01-29 18:24:01 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2005-01-29 18:24:01 +0000
commit2974e97c9f4c6b4f5280950ea9d77b81711ecf2c (patch)
tree7788a387012d9cca59cc098170fc27fc5f2dc5a6 /weave/setup.py
parentba85fbb3f0b7de0413d18bbaf018c26e7623ee08 (diff)
downloadnumpy-2974e97c9f4c6b4f5280950ea9d77b81711ecf2c.tar.gz
Fixed version numbers.
Diffstat (limited to 'weave/setup.py')
-rwxr-xr-xweave/setup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/weave/setup.py b/weave/setup.py
index 56d54f84c..fcd88d65a 100755
--- a/weave/setup.py
+++ b/weave/setup.py
@@ -4,9 +4,7 @@ from scipy_distutils.core import setup
from scipy_distutils.misc_util import get_path, merge_config_dicts
from scipy_distutils.misc_util import package_config
-# Enough changes to bump the number. We need a global method for
-# versioning
-version = "0.3.0"
+from weave_version import weave_version
def stand_alone_package(with_dependencies = 0):
path = get_path(__name__)
@@ -22,7 +20,7 @@ def stand_alone_package(with_dependencies = 0):
print 'dep:', dependencies
config_dict = package_config(primary,dependencies)
config_dict['name'] = 'weave'
- setup (version = version,
+ setup (version = weave_version,
description = "Tools for inlining C/C++ in Python",
author = "Eric Jones",
author_email = "eric@enthought.com",