Skip to content

Commit 1476245

Browse files
committed
Update workflows
1 parent 2837b28 commit 1476245

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{matrix.os}}
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929

3030
- name: Install Linux Dependencies
3131
if: runner.environment == 'github-hosted' && runner.os == 'Linux'
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install macOS Dependencies
4848
if: runner.environment == 'github-hosted' && runner.os == 'macOS'
4949
run: |
50-
brew install --overwrite bzip2 xz flac netcdf
50+
brew install --overwrite bzip2 xz flac netcdf libomp
5151
python3.13 -m pip install numpy scipy matplotlib astropy healpy sphinx sphinx-rtd-theme --break-system-packages
5252
5353
- name: Create Build Environment
@@ -97,7 +97,7 @@ jobs:
9797
9898
- name: Checkout gh_pages
9999
if: github.ref_name == 'master' && matrix.docs
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
ref: gh-pages
103103
path: gh-pages

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
uses: pypa/cibuildwheel@v3.1.3
5252
env:
5353
CIBW_BUILD: ${{ matrix.pyver }}-${{ matrix.build }}
54-
CIBW_BEFORE_ALL_LINUX: yum install -y zlib-devel bzip2-devel xz-devel netcdf-devel cfitsio-devel
55-
CIBW_BEFORE_ALL_MACOS: brew install netcdf cfitsio
54+
CIBW_BEFORE_ALL_LINUX: yum install -y zlib-devel bzip2-devel xz-devel netcdf-devel
55+
CIBW_BEFORE_ALL_MACOS: brew install libomp netcdf
5656
CIBW_BEFORE_BUILD_MACOS: >
5757
ln -s $(dirname $(readlink -f $(which python3)))/python3-config $(dirname $(which python3))/python3-config &&
5858
pip install cmake && ./deps/install_flac.sh

0 commit comments

Comments
 (0)