diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2020-04-19 16:20:47 -0500 |
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2020-04-19 16:20:47 -0500 |
| commit | b3892675b75e00ac64543ee52b307b13146d8c48 (patch) | |
| tree | 29334eedc4683a76823b7ec2c2b7defff48ae0ca | |
| parent | d8e598ce14feeaf70a7920655d7199d548330f55 (diff) | |
| download | cryptography-macos-wheel-builder.tar.gz | |
more fixesmacos-wheel-builder
| -rw-r--r-- | .github/workflows/wheel-builder.yml | 3 |
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'))" |
