diff options
| author | Travis Oliphant <oliphant@enthought.com> | 2006-07-21 08:48:36 +0000 |
|---|---|---|
| committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-21 08:48:36 +0000 |
| commit | 6dd69530d58ba65f4a37167ddec7c9cf19e44c18 (patch) | |
| tree | 852e7c1ae58784c855acb8bd67833eb5055fe2e7 | |
| parent | 036960c9572ffd7693e408a9ef149ce6b15c364c (diff) | |
| download | numpy-1.0b1.tar.gz | |
Remove svn number from 1.0b1 versionv1.0b1
| -rw-r--r-- | numpy/version.py | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/numpy/version.py b/numpy/version.py index 5b4b19a3e..0f6f00038 100644 --- a/numpy/version.py +++ b/numpy/version.py @@ -1,12 +1,13 @@ version='1.0b1' -import os -svn_version_file = os.path.join(os.path.dirname(__file__), - 'core','__svn_version__.py') -if os.path.isfile(svn_version_file): - import imp - svn = imp.load_module('numpy.core.__svn_version__', - open(svn_version_file), - svn_version_file, - ('.py','U',1)) - version += '.'+svn.version +#import os +#svn_version_file = os.path.join(os.path.dirname(__file__), +# 'core','__svn_version__.py') +#svn_version_file= +#if os.path.isfile(svn_version_file): +# import imp +# svn = imp.load_module('numpy.core.__svn_version__', +# open(svn_version_file), +# svn_version_file, +# ('.py','U',1)) +# version += '.'+svn.version |
