Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 39 additions & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,24 +77,62 @@ jobs:
- os: macos-13
python: 310
platform_id: macosx_x86_64
deployment_target: 13.0
- os: macos-13
python: 311
platform_id: macosx_x86_64
deployment_target: 13.0
- os: macos-13
python: 312
platform_id: macosx_x86_64
deployment_target: 13.0
- os: macos-13
python: 313
platform_id: macosx_x86_64
deployment_target: 13.0
- os: macos-13
python: 313t
platform_id: macosx_x86_64
deployment_target: 13.0
- os: macos-13
python: 314
platform_id: macosx_x86_64
deployment_target: 13.0
- os: macos-13
python: 314t
platform_id: macosx_x86_64
deployment_target: 13.0


# MacOS ARM
- os: macos-14
python: 310
platform_id: macosx_arm64
deployment_target: 14.0
- os: macos-14
python: 311
platform_id: macosx_arm64
deployment_target: 14.0
- os: macos-14
python: 312
platform_id: macosx_arm64
deployment_target: 14.0
- os: macos-14
python: 313
platform_id: macosx_arm64
deployment_target: 14.0
- os: macos-14
python: 313t
platform_id: macosx_arm64
deployment_target: 14.0
- os: macos-14
python: 314
platform_id: macosx_arm64
deployment_target: 14.0
- os: macos-14
python: 314t
platform_id: macosx_arm64
deployment_target: 14.0

steps:
- name: Checkout CPT
Expand All @@ -116,7 +154,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "mkdir tmp_for_test; cp -r {project}/tests tmp_for_test; pytest tmp_for_test/tests"
CIBW_BUILD_VERBOSITY: 1
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=13.0
CIBW_ENVIRONMENT_MACOS: ${{ format('MACOSX_DEPLOYMENT_TARGET={0}', matrix.deployment_target) }}
CIBW_ENABLE: cpython-freethreading

run: bash CI/github/build_wheels.sh
Expand Down