From 88308a352ba87272e688681eb7e0c5319d701010 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 3 Mar 2022 18:07:40 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5f61649..fd84b2fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -417,13 +417,16 @@ jobs: "${PYTHON}" -m pip install --upgrade -r requirements.txt "${PYTHON}" -m pip list if [[ "${RUNNER_OS}" == "macOS" ]]; then - "${PYTHON}" -m pip download --only-binary :all: \ - --dest . \ - --no-cache \ - --no-deps \ - --platform macosx_10_15_universal2 \ - cryptography - "${PYTHON}" -m pip install --force cryptography*.whl + for package in cffi cryptography pyscard; do + "${PYTHON}" -m pip download --only-binary :all: \ + --dest . \ + --no-cache \ + --no-deps \ + --platform macosx_10_15_universal2 \ + $package + ls -l *.whl + "${PYTHON}" -m pip install --force $package*.whl + done find $PYTHON_INSTALL_PATH/lib/python3.10/site-packages -type f -name "*.so" -exec du -sh "{}" \; fi