Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(macos): Avoid linking against Homebrew #1755

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 23, 2024

  1. ci(macos): Avoid linking against homebrew

    Homebrew binaries are always compiled for exactly the version they're
    installed on making them very un-portable. When a wheel is "repaired" by
    cibuildwheel, delocate-wheel pulls in _psycopg's dependencies
    (libpq.dylib, libssl.dylib and libcrypto.dylib) which, on a GitHub
    Actions macOS 14 runner, are provided by Homebrew and are therefore only
    macOS >= 14 compatible. The resultant wheel is therefore incompatible
    with all but the latest macOS versions.
    
    Build all dependencies from source so that we can set the deployment
    target to something sensible. Fixes psycopg#1753.
    bwoodsend committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    57bfbda View commit details
    Browse the repository at this point in the history