Skip to content

Commit 1fdfd33

Browse files
committed
Fix CI workflows
1 parent 8bfd42c commit 1fdfd33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
sudo apt update
3636
sudo apt install gcc-14 g++-14 -y
3737
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14 --slave /usr/bin/g++ g++ /usr/bin/g++-14
38-
sudo apt-get install libbz2-dev libboost-all-dev libflac-dev libnetcdf-dev libpython3-dev
38+
sudo apt-get install libbz2-dev libboost-python-dev libflac-dev libnetcdf-dev libpython3-dev
3939
sudo pip install numpy scipy matplotlib astropy healpy sphinx --break-system-packages
4040
4141
- name: Setup python on macOS
@@ -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 boost boost-python3 flac netcdf
50+
brew install --overwrite bzip2 boost-python3 flac netcdf
5151
python3.13 -m pip install numpy scipy matplotlib astropy healpy sphinx --break-system-packages
5252
5353
- name: Create Build Environment

deps/install_boost.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [ ! -e b2 ]; then
3535
--prefix=${PREFIX} \
3636
--with-python=$(which python3) \
3737
--with-python-root=$(python3-config --prefix) \
38-
--with-libraries="iostreams,python,regex"
38+
--with-libraries="python"
3939
fi
4040

4141
extra_include=""

0 commit comments

Comments
 (0)