We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db15652 commit f667823Copy full SHA for f667823
2 files changed
.github/workflows/release.yml
@@ -42,6 +42,8 @@ jobs:
42
run: brew install gfortran
43
if: ${{ matrix.os == 'macos-14' }}
44
- uses: pypa/cibuildwheel@v2.18.1
45
+ env:
46
+ MACOSX_DEPLOYMENT_TARGET: "${{ matrix.os == 'macos-12' && '12.0' || '14.0' }}"
47
- uses: actions/upload-artifact@v4
48
with:
49
name: binary-${{ matrix.os }}
pyproject.toml
@@ -45,7 +45,7 @@ write_to = "src/fsps/fsps_version.py"
[tool.cibuildwheel]
skip = "pp* *-win32 *-musllinux_* *-manylinux_i686"
-test-command = "python {project}/tests/simple.py"
+test-command = "SPS_HOME={project}/src/fsps/libfsps python {project}/tests/simple.py"
environment = { SPS_HOME = "$(pwd)/src/fsps/libfsps" }
50
51
[tool.black]
0 commit comments