Skip to content

Commit

Permalink
change pip to python -m pip
Browse files Browse the repository at this point in the history
  • Loading branch information
federicazanca authored and alinelena committed Feb 6, 2024
1 parent ba2a1d2 commit ca56694
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:

- name: Install python dependencies
run: |
pip install --upgrade pip
pip install -e .[testing]
python -m pip install --upgrade pip
python -m pip install -e .[testing]
- name: Run test suite
env:
Expand All @@ -61,8 +61,8 @@ jobs:
python-version: 3.11
- name: Install python dependencies
run: |
pip install --upgrade pip
pip install -e .[docs]
python -m pip install --upgrade pip
python -m pip install -e .[docs]
- name: Build docs
run: cd docs && make

Expand All @@ -77,8 +77,8 @@ jobs:
python-version: "3.11"
- name: Install python dependencies
run: |
pip install --upgrade pip
pip install -e .[pre-commit,docs,testing]
python -m pip install --upgrade pip
python -m pip install -e .[pre-commit,docs,testing]
- name: Run pre-commit
run: |
pre-commit install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3
- name: sphinx
run: |
pip install sphinxcontrib-contentui furo aiida-core
python -m pip install sphinxcontrib-contentui furo aiida-core
# temp fix install the package
python -m pip install .
cd docs
Expand Down

0 comments on commit ca56694

Please sign in to comment.