diff options
Diffstat (limited to 'numpy/f2py/setup.py')
-rw-r--r-- | numpy/f2py/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index 9f6e47c1c..656013fad 100644 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -37,7 +37,7 @@ def _get_f2py_shebang(): should be ``#!python`` rather than ``#!`` followed by the contents of ``sys.executable``. """ - if set(('bdist_wheel', 'bdist_egg', 'bdist_mpkg', 'bdist_wininst', + if set(('bdist_wheel', 'bdist_egg', 'bdist_wininst', 'bdist_rpm')).intersection(sys.argv): return '#!python' return '#!' + sys.executable |