Skip to content

Commit

Permalink
CI: install cffi before generating _soundfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aoirint authored Nov 6, 2023
1 parent 33cecac commit 146f54a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
- name: Install requirements
run: pip install numpy pytest
- name: "Workaround: Generate _soundfile.py explicitly"
run: python soundfile_build.py
run: |
pip install cffi>=1.0
python soundfile_build.py
- name: Install editable package
run: pip install --editable . --verbose
- name: Run tests
Expand Down

0 comments on commit 146f54a

Please sign in to comment.