CI: Remove openssl install for macOS PyPI packaging

No longer needed since the code signing got removed.
This solves build issues on latest Github Actions images.
This commit is contained in:
Philipp Wolfer
2023-07-20 07:59:11 +02:00
parent d001922d7b
commit 9ca6cf9364

View File

@@ -54,14 +54,12 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install gettext and openssl (macOS)
- name: Install gettext (macOS)
if: runner.os == 'macOS'
run: |
brew install gettext openssl@1.1
brew install gettext
brew link gettext --force
brew link openssl@1.1 --force
echo "/usr/local/opt/gettext/bin" >> $GITHUB_PATH
echo "/usr/local/opt/openssl@1.1/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
python -m pip install --upgrade pip