Skip to content

Commit

Permalink
Fix: [Actions] Install missing deps for PyPy (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
glx22 authored Jan 4, 2025
1 parent dabf9c8 commit a84ad36
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ jobs:
cache: 'pip'
cache-dependency-path: setup.py

- name: Install dependencies (PyPy)
if: startsWith(matrix.python-version, 'pypy')
shell: bash
run: |
echo "::group::Update apt"
sudo apt-get update
echo "::endgroup::"
echo "::group::Install dependencies"
sudo apt-get install -y --no-install-recommends \
libjpeg-dev \
# EOF
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand Down

0 comments on commit a84ad36

Please sign in to comment.