From 887ec5fd7ccf027ac54947580b69988235f68f22 Mon Sep 17 00:00:00 2001 From: Jody Klymak Date: Sun, 21 Mar 2021 10:47:03 -0700 Subject: [PATCH] Backport PR #19739: Changed 'python -mpip' to 'python -m pip' for consistency --- 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::