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
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ jobs:
with:
python-version-file: .python-version

- name: Pin cryptography on macOS Intel
# cryptography 49+ dropped macOS x86_64 wheel support and uses AWS-LC as its
# Rust backend, producing a _rust.abi3.so that references _SSL_get0_group_name
# — a symbol absent from the standard OpenSSL libssl.3.dylib that PyInstaller
# bundles. Constrain to <49 to get the last universal2 wheel with bundled OpenSSL.
if: matrix.runner == 'macos-15-intel'
run: |
echo "cryptography<49" > "$RUNNER_TEMP/constraints.txt"
echo "PIP_CONSTRAINT=$RUNNER_TEMP/constraints.txt" >> "$GITHUB_ENV"

# Add a retry to avoid issues when this action is running
# right after the package is published on PyPi
# (and might not be distributed in the CDN yet)
Expand Down