diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-07-03 19:57:24 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-07-03 19:57:24 +0000 |
commit | 484c100392601f4942ceecbedf32e6df0201d473 (patch) | |
tree | 5e5a58b30a39bd1b5481333ae4a4b9c34e466841 /numpy/f2py/setupscons.py | |
parent | 0c817a5d51c2c16db9df5c015ff846002d991d74 (diff) | |
download | numpy-484c100392601f4942ceecbedf32e6df0201d473.tar.gz |
Removing G3 f2py code. Development has moved to https://launchpad.net/f2py/
Diffstat (limited to 'numpy/f2py/setupscons.py')
-rwxr-xr-x | numpy/f2py/setupscons.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/numpy/f2py/setupscons.py b/numpy/f2py/setupscons.py index 1b8693df9..dc76cd2e0 100755 --- a/numpy/f2py/setupscons.py +++ b/numpy/f2py/setupscons.py @@ -63,10 +63,8 @@ for mode in ["g3-numpy", "2e-numeric", "2e-numarray", "2e-numpy"]: except ValueError: pass os.environ["NO_SCIPY_IMPORT"]="f2py" if mode=="g3-numpy": - try: - from main import main - except ImportError: - from numpy.f2py.lib.api import main + print >> sys.stderr, "G3 f2py support is not implemented, yet." + sys.exit(1) elif mode=="2e-numeric": from f2py2e import main elif mode=="2e-numarray": |