Skip to content

Commit

Permalink
github actions: try to fix gsl availability
Browse files Browse the repository at this point in the history
  • Loading branch information
subhacom committed Nov 10, 2024
1 parent 17f91bb commit 45f4341
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pymoose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ jobs:
meson
ninja
meson-python
cmake
gsl
post-cleanup: all
generate-run-shell: false
- name: Display Python version
run: |
python -c "import sys; print(sys.version)"
- if: ${{ matrix.apt }}
run: |
sudo apt-get -y install libhdf5-dev libgsl0-dev graphviz-dev python3-lxml doxygen
sudo apt-get -y install libhdf5-dev libgsl0-dev graphviz-dev python3-lxml doxygen libgsl-dev
- if: ${{ matrix.brew }}
run: |
brew install gsl
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
build-backend = 'mesonpy'
requires = ['meson', 'ninja', 'meson-python', 'pybind11[global]']
requires = ['meson', 'ninja', 'meson-python', 'pybind11[global]', 'gsl']

[project]
name = 'pymoose'
Expand Down

0 comments on commit 45f4341

Please sign in to comment.