diff options
author | Luca Mussi <ing.luca.mussi@gmail.com> | 2016-04-07 13:24:49 +0200 |
---|---|---|
committer | Luca Mussi <ing.luca.mussi@gmail.com> | 2016-04-07 13:24:49 +0200 |
commit | 69d2cc8511914d636212b0218eb44c03b9012810 (patch) | |
tree | 2c3768b347cff1db6fb0411dc3cfdb13bf329dfc /setup.py | |
parent | bcbed877f42ed6e9b01b2125134db4b6395f1d9d (diff) | |
download | numpy-69d2cc8511914d636212b0218eb44c03b9012810.tar.gz |
Fixed iteration over additional bad commands
Diffstat (limited to 'setup.py')
-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 |