diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:26:31 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:26:31 +0000 |
commit | 8e2654541c6eae0f308908f501cccbc86b2f9101 (patch) | |
tree | bfcfe3b282c8fb659832bf86a841ce76852094ad /scipy/core_version.py | |
parent | ddaed649c23bbd0ad36cdafdfe9cd92397ce69e3 (diff) | |
download | numpy-8e2654541c6eae0f308908f501cccbc86b2f9101.tar.gz |
Moved scipy directory to numpy
Diffstat (limited to 'scipy/core_version.py')
-rw-r--r-- | scipy/core_version.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/scipy/core_version.py b/scipy/core_version.py deleted file mode 100644 index bb9fdfaa4..000000000 --- a/scipy/core_version.py +++ /dev/null @@ -1,12 +0,0 @@ -version='0.9.2' - -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 |