File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ jobs:
35
35
- run :
36
36
name : Python and RST checks
37
37
command : |
38
- pip install --upgrade pip setuptools
39
- pip install black
38
+ python -m pip install --upgrade pip setuptools
39
+ python -m pip install black
40
40
black --check .
41
41
# pydocstyle==4.0.0 broke flake8-docstrings https://gitlab.com/pycqa/flake8-docstrings/issues/36
42
- pip install flake8==3.6 flake8-blind-except "pydocstyle<4.0.0" flake8-docstrings flake8-rst-docstrings restructuredtext-lint flake8-bugbear pygments
42
+ python -m pip install flake8==3.6 flake8-blind-except "pydocstyle<4.0.0" flake8-docstrings flake8-rst-docstrings restructuredtext-lint flake8-bugbear pygments
43
43
flake8 .
44
44
restructuredtext-lint *.rst database/*.rst tests/*/*.rst
45
45
- run :
57
57
echo "Building a wheel..."
58
58
python setup.py bdist_wheel
59
59
echo "Installing our wheel..."
60
- pip install dist/thapbi_pict-*.whl
60
+ python -m pip install dist/thapbi_pict-*.whl
61
61
- run :
62
62
name : Test
63
63
command : |
You can’t perform that action at this time.
0 commit comments