Skip to content

Commit

Permalink
In macos tests, update python version. (#171)
Browse files Browse the repository at this point in the history
The homebrew packages for boost-python have been updated to
python-3.13.  This trivial changes just uses that python
version to match what is used by the homebrew packages.
  • Loading branch information
tskisner authored Jan 22, 2025
1 parent ad5fb30 commit 43ef4cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
if: runner.environment == 'github-hosted' && runner.os == 'macOS'
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'

- name: Install macOS Dependencies
if: runner.environment == 'github-hosted' && runner.os == 'macOS'
run: |
brew install --overwrite bzip2 boost boost-python3 flac netcdf
python3.12 -m pip install numpy scipy matplotlib astropy healpy sphinx --break-system-packages
python3.13 -m pip install numpy scipy matplotlib astropy healpy sphinx --break-system-packages
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
Expand Down

0 comments on commit 43ef4cc

Please sign in to comment.