summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2020-04-19 16:20:47 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2020-04-19 16:20:47 -0500
commitb3892675b75e00ac64543ee52b307b13146d8c48 (patch)
tree29334eedc4683a76823b7ec2c2b7defff48ae0ca
parentd8e598ce14feeaf70a7920655d7199d548330f55 (diff)
downloadcryptography-macos-wheel-builder.tar.gz
-rw-r--r--.github/workflows/wheel-builder.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml
index 661dfcf59..fbea2bf87 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -83,6 +83,7 @@ jobs:
env:
PYTHON_DOWNLOAD_URL: ${{ matrix.PYTHON.DOWNLOAD_URL }}
+ - run: brew update
- run: brew upgrade openssl@1.1
- run: ${{ matrix.PYTHON.BIN_PATH }} -m pip install -U virtualenv
- run: ${{ matrix.PYTHON.BIN_PATH }} -m virtualenv venv
@@ -104,7 +105,7 @@ jobs:
venv/bin/pip wheel cryptography==2.9 --wheel-dir=wheelhouse --no-binary cryptography --no-deps $PY_LIMITED_API
env:
PYTHON_VERSION: ${{ matrix.PYTHON.ABI_VERSION }}
- - run: pip install -f wheelhouse --no-index cryptography
+ - run: venv/bin/pip install -f wheelhouse --no-index cryptography
- run: |
venv/bin/python -c "from cryptography.hazmat.backends.openssl.backend import backend;print('Loaded: ' + backend.openssl_version_text());print('Linked Against: ' + backend._ffi.string(backend._lib.OPENSSL_VERSION_TEXT).decode('ascii'))"