mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
CI: Fix installation of python package on macOS
This commit is contained in:
parent
ddf63778c3
commit
167cbaf6e4
1 changed files with 6 additions and 1 deletions
|
@ -8,7 +8,12 @@ set -x
|
|||
brew update
|
||||
brew upgrade cmake
|
||||
brew install openssl@3 swig bison flex ccache libmaxminddb
|
||||
python3 -m pip install --user websockets
|
||||
|
||||
if [ $(sw_vers -productVersion | cut -d '.' -f 1) -lt 14 ]; then
|
||||
python3 -m pip install --upgrade pip
|
||||
fi
|
||||
|
||||
python3 -m pip install --user --break-system-packages websockets
|
||||
|
||||
# Brew doesn't create the /opt/homebrew/opt/openssl symlink if you install
|
||||
# openssl@1.1, only with 3.0. Create the symlink if it doesn't exist.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue