Skip to content

Commit

Permalink
test [pypi]
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Jun 7, 2024
1 parent ad6ce39 commit f6af2ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 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-11, macos-12, macos-13, macos-14, ubuntu-latest, windows-latest ]
os: [ macos-11, macos-12, macos-13, macos-13-xlarge, macos-14, ubuntu-latest, windows-latest ]

steps:
- uses: awvwgk/setup-fortran@main
Expand All @@ -33,7 +33,7 @@ jobs:
run: python -m pip install cibuildwheel==2.18.1

- name: Build macos-13 wheels
if: matrix.os == 'macos-13'
if: matrix.os == 'macos-13' || matrix.os == 'macos-13-xlarge'
env:
MACOSX_DEPLOYMENT_TARGET: 13
CIBW_BUILD: cp311-*
Expand All @@ -59,7 +59,7 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse

- name: Build wheels
if: matrix.os != 'macos-13' && matrix.os != 'macos-12' && matrix.os != 'macos-11'
if: matrix.os == 'macos-14' && matrix.os == 'ubuntu-latest' && matrix.os == 'windows-latest'
env:
MACOSX_DEPLOYMENT_TARGET: 14
CIBW_BUILD: cp311-*
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.5.dev.2"
__version__ = "1.5.4.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.5.dev.2'
character(LEN=*), parameter :: version = '1.5.4.1'

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

Expand Down

0 comments on commit f6af2ab

Please sign in to comment.