mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-07-29 17:39:49 +03:00
Use absolute path
This commit is contained in:
parent
e4d5059eef
commit
618496e051
5
.github/workflows/packages.yml
vendored
5
.github/workflows/packages.yml
vendored
|
@ -158,7 +158,10 @@ jobs:
|
|||
env:
|
||||
CIBW_ARCHS: arm64
|
||||
# This changes the default in order to place the wheel in "repaired_wheels"
|
||||
CIBW_REPAIR_WHEEL_COMMAND: delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w repaired_wheels {wheel}
|
||||
# The -w argument requires an absolute path
|
||||
CIBW_REPAIR_WHEEL_COMMAND: |
|
||||
delocate-listdeps {wheel} &&
|
||||
delocate-wheel --require-archs {delocate_archs} -w ${{ github.workspace}}/repaired_wheels {wheel}
|
||||
# This allows substitution within setup.py
|
||||
PACKAGE_NAME: psycopg2-binary
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user