Skip to content

Commit

Permalink
Update python pip
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Dec 19, 2023
1 parent f16f47e commit a3cd7e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip mypy
pip install setuptools wheel
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install -U pip mypy
python -m pip install setuptools wheel
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
- name: Type checking with mypy
run: mypy --ignore-missing-imports ValgrindCI/*.py
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
touch ValgrindCI/py.typed
python setup.py bdist_wheel
pip install ValgrindCI --no-index -f dist/ValgrindCI*.whl
python -m pip install ValgrindCI --no-index -f dist/ValgrindCI*.whl
- name: Test
working-directory: build
Expand Down

0 comments on commit a3cd7e6

Please sign in to comment.