Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 705123c

Browse files
authored
Merge pull request #19770 from meeseeksmachine/auto-backport-of-pr-19739-on-v3.4.x
Backport PR #19739 on branch v3.4.x (Changed 'python -mpip' to 'python -m pip' for consistency)
2 parents 51b8ebc + 887ec5f commit 705123c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/devel/contributing.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,12 @@ tools:
206206

207207
* Code with a good unittest coverage (at least 70%, better 100%), check with::
208208

209-
python -mpip install coverage
210-
python -mpytest --cov=matplotlib --showlocals -v
209+
python -m pip install coverage
210+
python -m pytest --cov=matplotlib --showlocals -v
211211

212212
* No pyflakes warnings, check with::
213213

214-
python -mpip install pyflakes
214+
python -m pip install pyflakes
215215
pyflakes path/to/module.py
216216

217217
.. note::

0 commit comments

Comments
 (0)