Skip to content

Commit fe0901c

Browse files
committed
test [pypi]
1 parent 219ddef commit fe0901c

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ jobs:
4848
- name: Build macos-12 wheels
4949
if: matrix.os == 'macos-12'
5050
env:
51-
# all cp3xx, since old macs seem to only use osx 12+ builds if this is set not "none"
52-
# see consistency with get_tag() in setup.py
5351
MACOSX_DEPLOYMENT_TARGET: 12
5452
CIBW_BUILD: cp311-*
5553
CIBW_SKIP: pp*
@@ -59,7 +57,7 @@ jobs:
5957
- name: Build wheels
6058
if: matrix.os == 'macos-14' || matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'
6159
env:
62-
MACOSX_DEPLOYMENT_TARGET: 14
60+
MACOSX_DEPLOYMENT_TARGET: 11
6361
CIBW_BUILD: cp311-*
6462
CIBW_SKIP: pp* *-win32 *-manylinux_i686 *musllinux*
6563
CIBW_BUILD_VERBOSITY: 1

fortran/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ SFFLAGS += -static-libgfortran -static-libgcc -static-libquadmath
102102
endif
103103
else
104104
SFFLAGS = -shared -fpic
105-
ifneq ($(CIBW_BUILD),)
105+
ifdef NONNATIVE
106106
SFFLAGS += -static-libgfortran -static-libgcc
107107
endif
108108
endif

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,5 +287,4 @@ def run(self):
287287
package_data={'camb': [DLLNAME, 'HighLExtrapTemplate_lenspotentialCls.dat',
288288
'PArthENoPE_880.2_marcucci.dat', 'PArthENoPE_880.2_standard.dat',
289289
'PRIMAT_Yp_DH_Error.dat', 'PRIMAT_Yp_DH_ErrorMC_2021.dat']},
290-
test_suite='camb.tests'
291290
)

0 commit comments

Comments
 (0)