CI: Pin to python 3.13 on macOS

This commit is contained in:
Tim Wojtulewicz 2025-10-10 11:28:02 -07:00
parent d65a43472f
commit 07e5ad1f8c
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,7 @@
8.0.1-18 | 2025-10-10 11:28:02 -0700
* CI: Pin to python 3.13 on macOS (Tim Wojtulewicz, Corelight)
8.0.1-17 | 2025-10-10 10:50:07 -0700
* Bump CI to freebsd-13.5 (Benjamin Bannier, Corelight)

View file

@ -1 +1 @@
8.0.1-17
8.0.1-18

View file

@ -7,7 +7,11 @@ set -x
brew update
brew upgrade cmake
brew install cppzmq openssl@3 python@3 swig bison flex ccache libmaxminddb dnsmasq krb5
brew install cppzmq openssl@3 python@3.13 swig bison flex ccache libmaxminddb dnsmasq krb5
# Homebrew doesn't put older versions of python into the PATH by default.
export PATH=/opt/homebrew/opt/python@3.13/libexec/bin:${PATH}
echo "export PATH=/opt/homebrew/opt/python@3.13/libexec/bin:${PATH}" >>~/.zshrc
which python3
python3 --version