Skip to content

Commit

Permalink
Updated files with 'repo_helper'.
Browse files Browse the repository at this point in the history
  • Loading branch information
repo-helper[bot] committed Mar 4, 2024
1 parent 34298b8 commit 4fb5189
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,17 @@ jobs:
with:
python-version: "3.8"

- name: Install dependencies 🔧
- name: Install dependencies (Linux) 🔧
if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
run: |
pip wheel git+https://github.com/python-cffi/cffi
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
- name: Install dependencies (Windows) 🔧
if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
run: |
python -VV
python -m site
Expand Down

0 comments on commit 4fb5189

Please sign in to comment.