Skip to content

Commit

Permalink
Update build_wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
borisbolliet authored Sep 29, 2024
1 parent da37fc5 commit 5111f8b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,14 @@ jobs:
- name: Install system dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libgsl-dev libfftw3-dev
run: |
sudo apt-get install -y libgsl-dev libfftw3-dev
echo "Include paths for GSL and FFTW:"
dpkg -L libgsl-dev | grep '/include'
dpkg -L libfftw3-dev | grep '/include'
echo "Library paths for GSL and FFTW:"
dpkg -L libgsl-dev | grep '/lib'
dpkg -L libfftw3-dev | grep '/lib'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.14.1
Expand Down

0 comments on commit 5111f8b

Please sign in to comment.