From 3537712c3174cb8a40a557a3b551ae8623b2ad3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=BCtzel?= Date: Tue, 15 Oct 2024 18:50:16 +0200 Subject: [PATCH] GitHub-CI (macos): Work around conflict between pre-installed and Homebrew Python. * .github/workflows/make.yaml (macos): GitHub-hosted macOS runners now come with pre-installed Python 3.12 or 3.13. Force overwriting files from both pre-installed versions. They conflict with the files from Homebrew's versions of Python. --- .github/workflows/make-macos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/make-macos.yaml b/.github/workflows/make-macos.yaml index 04fd0d7ac3..0788c98d70 100644 --- a/.github/workflows/make-macos.yaml +++ b/.github/workflows/make-macos.yaml @@ -73,7 +73,7 @@ jobs: # The third block is for additional dependencies needed when building from a repository checkout. run: | brew update - brew install --overwrite python@3.11 python@3.12 + brew install --overwrite python@3.12 python@3.13 brew reinstall gcc brew install arpack epstool fftw fig2dev fltk fontconfig freetype \ ghostscript gl2ps glpk gnuplot graphicsmagick hdf5 libsndfile \