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 a0f42dc commit affc89d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
- name: Build macos-13 wheels
if: matrix.os == 'macos-13'
env:
# Disable building for PyPy and 32bit.
MACOSX_DEPLOYMENT_TARGET: 13
CIBW_BUILD: cp311-*
CIBW_SKIP: pp*
Expand All @@ -45,7 +44,6 @@ jobs:
- name: Build macos-12 wheels
if: matrix.os == 'macos-12'
env:
# Disable building for PyPy and 32bit.
MACOSX_DEPLOYMENT_TARGET: 12
CIBW_BUILD: cp311-*
CIBW_SKIP: pp*
Expand All @@ -56,16 +54,14 @@ jobs:
if: matrix.os == 'macos-11'
env:
MACOSX_DEPLOYMENT_TARGET: 11
CIBW_BUILD: cp311-*
CIBW_SKIP: pp*
CIBW_BUILD_VERBOSITY: 2
CIBW_BUILD_VERBOSITY: 1
run: python -m cibuildwheel --output-dir wheelhouse

- name: Build wheels
if: matrix.os != 'macos-13' && matrix.os != 'macos-12' && matrix.os != 'macos-11'
env:
MACOSX_DEPLOYMENT_TARGET: 14
# Disable building for PyPy and 32bit.
CIBW_BUILD: cp311-*
CIBW_SKIP: pp* *-win32 *-manylinux_i686 *musllinux*
#CIBW_TEST_REQUIRES: scipy sympy
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.1"
__version__ = "1.5.5.dev.2"

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.1'
character(LEN=*), parameter :: version = '1.5.5.dev.2'

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

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ def finalize_options(self):

def get_tag(self):
_, _, plat = super().get_tag()
if "osx_11" in plat:
return _, _, plat
return "py3", "none", plat


Expand Down

0 comments on commit affc89d

Please sign in to comment.