Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Jun 7, 2024
1 parent db70d1f commit c056583
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-12, macos-13, macos-14, ubuntu-latest, windows-latest ]
os: [ macos-11, macos-12, macos-13, macos-14, ubuntu-latest, windows-latest ]

steps:
- uses: awvwgk/setup-fortran@main
Expand All @@ -29,7 +29,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.6'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.18.1
Expand All @@ -54,8 +54,16 @@ jobs:
CIBW_BUILD_VERBOSITY: 1
run: python -m cibuildwheel --output-dir wheelhouse

- name: Build macos-11 wheels
if: matrix.os == 'macos-11'
env:
CIBW_BUILD: cp311-*
CIBW_SKIP: pp*
CIBW_BUILD_VERBOSITY: 2
run: python -m cibuildwheel --output-dir wheelhouse

- name: Build wheels
if: matrix.os != 'macos-13' && matrix.os != 'macos-12'
if: matrix.os != 'macos-13' && matrix.os != 'macos-12' && matrix.os != 'macos-11'
env:
MACOSX_DEPLOYMENT_TARGET: 14
# Disable building for PyPy and 32bit.
Expand Down
2 changes: 1 addition & 1 deletion camb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Antony Lewis"
__contact__ = "antony at cosmologist dot info"
__url__ = "https://camb.readthedocs.io"
__version__ = "1.5.4.dev.1"
__version__ = "1.5.5.dev.1"

from . import baseconfig

Expand Down
2 changes: 1 addition & 1 deletion fortran/config.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module config
use constants, only: const_twopi
implicit none

character(LEN=*), parameter :: version = '1.5.4.dev.1'
character(LEN=*), parameter :: version = '1.5.5.dev.1'

integer :: FeedbackLevel = 0 !if >0 print out useful information about the model

Expand Down

0 comments on commit c056583

Please sign in to comment.