Skip to content

Commit

Permalink
set deployment target to major version. openssl library is compatible…
Browse files Browse the repository at this point in the history
… with all minor versions under major version
  • Loading branch information
juliannguyen4 committed Dec 9, 2024
1 parent eddcc52 commit 41147b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,9 @@ jobs:
- if: ${{ startsWith(inputs.platform-tag, 'manylinux') }}
run: echo CIBW_MANYLINUX_AARCH64_IMAGE=${{ format(env.CUSTOM_IMAGE_NAME, 'aarch64') }} >> $GITHUB_ENV

- name: The macOS wheel is only backwards compatible with the macOS version it is built from
- name: The macOS wheel is only backwards compatible with the macOS major version it is built from
if: ${{ startsWith(inputs.platform-tag, 'macosx') }}
run: echo MACOSX_DEPLOYMENT_TARGET=$(sw_vers --productVersion | cut -d"." -f -2) >> $GITHUB_ENV
run: echo MACOSX_DEPLOYMENT_TARGET=$(sw_vers --productVersion | cut -d"." -f 1).0 >> $GITHUB_ENV

- uses: docker/login-action@v3
if: ${{ startsWith(inputs.platform-tag, 'manylinux') }}
Expand Down

0 comments on commit 41147b6

Please sign in to comment.