Skip to content

Commit 461abdc

Browse files
committed
test wheel [pypi][testpypi]
1 parent 4dc0830 commit 461abdc

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os: [ macos-12, macos-13, macos-13-xlarge, macos-14, ubuntu-latest, windows-latest ]
12+
os: [ macos-12 ]
1313

1414
steps:
1515
- uses: awvwgk/setup-fortran@main
@@ -47,7 +47,8 @@ jobs:
4747
env:
4848
# all cp3xx, since old macs seem to only use osx 12+ builds if this is set not "none"
4949
# see consistency with get_tag() in setup.py
50-
MACOSX_DEPLOYMENT_TARGET: 12
50+
CIBW_BUILD: cp311-*
51+
MACOSX_DEPLOYMENT_TARGET: 10.15
5152
CIBW_SKIP: pp*
5253
CIBW_BUILD_VERBOSITY: 1
5354
run: python -m cibuildwheel --output-dir wheelhouse

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ branches:
1111
- CAMB_sources
1212
- rayleigh
1313

14-
if: (type != pull_request) OR (type = pull_request AND TRAVIS_PULL_REQUEST_SLUG != 'cmbant/camb')
14+
if: (type = pull_request) AND (type != pull_request) OR (type = pull_request AND TRAVIS_PULL_REQUEST_SLUG != 'cmbant/camb')
1515

1616
jobs:
1717
include:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ def finalize_options(self):
256256

257257
def get_tag(self):
258258
_, _, plat = super().get_tag()
259-
if "osx_12" in plat:
260-
return _, _, plat
259+
# if "osx_12" in plat:
260+
# return _, _, plat
261261
return "py3", "none", plat
262262

263263

0 commit comments

Comments
 (0)