diff options
| author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 23:20:44 +0000 |
|---|---|---|
| committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 23:20:44 +0000 |
| commit | be4d973ac0fa792c7e072408c2e2a895853ccdbf (patch) | |
| tree | d81d956bbc40b6fac7fe2ed536d2adc7e96f0237 /numpy | |
| parent | 961f7f5348dce942991e98e48a966f458bb26273 (diff) | |
| download | numpy-be4d973ac0fa792c7e072408c2e2a895853ccdbf.tar.gz | |
Fixed version issue..
Diffstat (limited to 'numpy')
| -rwxr-xr-x | numpy/f2py/f2py2e.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/f2py/f2py2e.py b/numpy/f2py/f2py2e.py index 384359347..5126aa82b 100755 --- a/numpy/f2py/f2py2e.py +++ b/numpy/f2py/f2py2e.py @@ -36,7 +36,7 @@ import f90mod_rules outmess = auxfuncs.outmess try: - from numpy import __core_version__ as numpy_core_version + from numpy import __version__ as numpy_version except ImportError: numpy_distutils_version = 'N/A' @@ -164,7 +164,7 @@ numpy_core Version: %s Requires: Python 2.3 or higher. License: LGPL (see http://www.fsf.org) Copyright 1999 - 2005 Pearu Peterson all rights reserved. -http://cens.ioc.ee/projects/f2py2e/"""%(f2py_version, numpy_core_version) +http://cens.ioc.ee/projects/f2py2e/"""%(f2py_version, numpy_version) def scaninputline(inputline): |
