0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

CI: Do not install python on macOS

macOS and the GitHub runners have python3 preinstalled.
We only needed to specify a version because aiohttp wasn't compatible
with 3.12, but that's no longer the case.
This commit is contained in:
derrod 2024-01-31 22:54:11 +01:00 committed by Ryan Foster
parent c36e5e1e6e
commit 700017fec3

View File

@ -51,8 +51,8 @@ runs:
if [[ "${RUNNER_OS}" == Linux ]]; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH
brew install --overwrite --quiet python3
fi
brew install --overwrite --quiet python@3.11
python3 -m pip install jsonschema json_source_map requests aiohttp
echo ::endgroup::