Skip to content

Commit 807987b

Browse files
Use pip rather than pip3
1 parent 1a16424 commit 807987b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
- name: "Python version . . ."
5050
run: |
5151
python --version
52-
pip3 --version
53-
- name: "Pip3 installing libsemigroups_pybind11 . . ."
52+
pip --version
53+
- name: "Pip installing libsemigroups_pybind11 . . ."
5454
run: |
55-
CXX="${{ matrix.compiler }}" pip3 install . -v
55+
CXX="${{ matrix.compiler }}" pip install . -v
5656
- name: "python -m pytest -vv tests/test_*.py . . ."
5757
run: |
5858
python -m pytest -vv tests/test_*.py
@@ -61,9 +61,9 @@ jobs:
6161
etc/make-doc.sh # so that all files are generated!
6262
cd docs
6363
python -m sphinx -b doctest -d _build/doctrees source _build/doctest
64-
- name: "Pip3 installing pylint + cpplint . . ."
64+
- name: "Pip installing pylint + cpplint . . ."
6565
run: |
66-
pip3 install pylint cpplint
66+
pip install pylint cpplint
6767
- name: "Running pylint and cpplint . . ."
6868
run: |
6969
python -m pylint setup.py tests/*.py libsemigroups_pybind11/*.py

0 commit comments

Comments
 (0)