From b37fe566e4543418b8c643fbdaaed057b0e1111b Mon Sep 17 00:00:00 2001 From: Christian Baumann Date: Thu, 18 Mar 2021 21:24:25 +0100 Subject: [PATCH] Changed 'python -mpip' to 'python -m pip' for consistency The top-level files INSTALL.rst and README.rst both use the version with the space between the -m and the module that is execute. To be more consistent, this was changed here as well. --- doc/devel/contributing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/devel/contributing.rst b/doc/devel/contributing.rst index 4157034c53fc..236782ae95c8 100644 --- a/doc/devel/contributing.rst +++ b/doc/devel/contributing.rst @@ -206,12 +206,12 @@ tools: * Code with a good unittest coverage (at least 70%, better 100%), check with:: - python -mpip install coverage - python -mpytest --cov=matplotlib --showlocals -v + python -m pip install coverage + python -m pytest --cov=matplotlib --showlocals -v * No pyflakes warnings, check with:: - python -mpip install pyflakes + python -m pip install pyflakes pyflakes path/to/module.py .. note::