diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-04-07 10:06:40 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-04-07 10:06:40 -0600 |
commit | 104501e39e4a68d98ff96bf3a4eae8f17e632609 (patch) | |
tree | c2888d026649422d56a765c57ce3d2611b7a52a7 | |
parent | 0c6aa60caaaf41164983ab7d2a2b62a06292f610 (diff) | |
parent | 69d2cc8511914d636212b0218eb44c03b9012810 (diff) | |
download | numpy-104501e39e4a68d98ff96bf3a4eae8f17e632609.tar.gz |
Merge pull request #7522 from splendido/patch-1
Fixed iteration over additional bad commands
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -317,7 +317,7 @@ def parse_setuppy_commands(): flake8="`setup.py flake8` is not supported, use flake8 standalone", ) bad_commands['nosetests'] = bad_commands['test'] - for commands in ('upload_docs', 'easy_install', 'bdist', 'bdist_dumb', + for command in ('upload_docs', 'easy_install', 'bdist', 'bdist_dumb', 'register', 'check', 'install_data', 'install_headers', 'install_lib', 'install_scripts', ): bad_commands[command] = "`setup.py %s` is not supported" % command |