Reinstall Zlib

This commit is contained in:
Ben van Hartingsveldt 2025-09-16 18:26:02 +02:00
parent 07697bfa99
commit ee85ea06b8
No known key found for this signature in database
GPG key ID: 261AA214130CE7AB

View file

@ -52,6 +52,10 @@ jobs:
- name: Install Python2 - name: Install Python2
if: startsWith(runner.os, 'mac') if: startsWith(runner.os, 'mac')
run: | run: |
brew reinstall zlib
export LDFLAGS="-L/usr/local/opt/zlib/lib"
export CPPFLAGS="-I/usr/local/opt/zlib/include"
export PKG_CONFIG_PATH="/usr/local/opt/zlib/lib/pkgconfig"
brew install pyenv brew install pyenv
pyenv install 2.7 pyenv install 2.7
pyenv global 2.7 pyenv global 2.7