summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-05-05 16:22:36 -0400
committerCharles Harris <charlesr.harris@gmail.com>2015-05-05 16:22:36 -0400
commita29c296f0bf306a8824705567cbb4271f383f0ea (patch)
tree856fd2e3ff29def1a5c9fb7108043b834037104f
parent09e38f9e2f3a81a9a4c98f36780e791f60c665b1 (diff)
parent2bc2676c8c2f750b61444560c9f7661cb0c15c6a (diff)
downloadnumpy-a29c296f0bf306a8824705567cbb4271f383f0ea.tar.gz
Merge pull request #5838 from matthew-brett/master
BUG: revert use of !python for bdist_mpkg scripts
-rw-r--r--numpy/f2py/setup.py2
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