diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-11-12 04:26:50 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-11-12 04:26:50 +0000 |
commit | 280dfb5924f132f8e5103bd44d9c468f9255f9ca (patch) | |
tree | e836c3709b61ee42f3d1507398558092fe959532 /scipy/core_version.py | |
parent | 42a1219d36a27a35350f532e46fea33da56cc227 (diff) | |
download | numpy-280dfb5924f132f8e5103bd44d9c468f9255f9ca.tar.gz |
Removed svn version number for release.
Diffstat (limited to 'scipy/core_version.py')
-rw-r--r-- | scipy/core_version.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/scipy/core_version.py b/scipy/core_version.py index 33b2aa422..5ae23b2c3 100644 --- a/scipy/core_version.py +++ b/scipy/core_version.py @@ -1,12 +1,12 @@ -version='0.5.9' +version='0.6.0' -import os -svn_version_file = os.path.join(os.path.dirname(__file__), +#import os +#svn_version_file = os.path.join(os.path.dirname(__file__), 'base','__svn_version__.py') -if os.path.isfile(svn_version_file): - import imp - svn = imp.load_module('scipy.base.__svn_version__', - open(svn_version_file), - svn_version_file, - ('.py','U',1)) - version += '.'+svn.version +#if os.path.isfile(svn_version_file): +# import imp +# svn = imp.load_module('scipy.base.__svn_version__', +# open(svn_version_file), +# svn_version_file, +# ('.py','U',1)) +# version += '.'+svn.version |