summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGiulio Procopio <61784957+Giuppox@users.noreply.github.com>2021-03-18 13:07:30 +0100
committerGitHub <noreply@github.com>2021-03-18 13:07:30 +0100
commitb39dc56bcbfb2990e970e405b863218980b6d68a (patch)
tree16449e3f70d7972a7384ed44ef461a3240404042 /setup.py
parentff8377692eb2d318d9d61bba3a889c86aa8a6308 (diff)
downloadnumpy-b39dc56bcbfb2990e970e405b863218980b6d68a.tar.gz
ENH: Removed useless declarations in `bad_commands`
When creating the `bad_commands` dictionary it is useless to declare commands that are already set with a default message in the 329th line's for loop
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 4c7d825df..247dc512a 100755
--- a/setup.py
+++ b/setup.py
@@ -313,8 +313,6 @@ def parse_setuppy_commands():
Instead, build what you want to upload and upload those files
with `twine upload -s <filenames>` instead.
""",
- upload_docs="`setup.py upload_docs` is not supported",
- easy_install="`setup.py easy_install` is not supported",
clean="""
`setup.py clean` is not supported, use one of the following instead:
@@ -322,10 +320,6 @@ def parse_setuppy_commands():
- `git clean -Xdf` (cleans all versioned files, doesn't touch
files that aren't checked into the git repo)
""",
- check="`setup.py check` is not supported",
- register="`setup.py register` is not supported",
- bdist_dumb="`setup.py bdist_dumb` is not supported",
- bdist="`setup.py bdist` is not supported",
build_sphinx="""
`setup.py build_sphinx` is not supported, use the
Makefile under doc/""",