From c83e3234b83d01070ca49705b6c0c56fcc7c2466 Mon Sep 17 00:00:00 2001 From: Paul Gessinger Date: Wed, 21 Feb 2024 09:46:01 +0100 Subject: [PATCH] pythia python from brew path --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 37ab3a5..6699207 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -541,7 +541,7 @@ jobs: curl -SL https://pythia.org/download/pythia8${PYTHIA8_VERSION:0:1}/pythia8${PYTHIA8_VERSION}.tgz | tar -xzC . && mv pythia8* ${SRC_DIR} && cd ${SRC_DIR} - && CC="ccache $CC" CXX="ccache $CXX" ./configure --prefix=${INSTALL_DIR} + && CC="ccache $CC" CXX="ccache $CXX" ./configure --prefix=${INSTALL_DIR} --with-python-include=$(python3.12-config --prefix)/include/python3.12 && make -j2 && make install && tar czf ../pythia8.tar.gz -C ${INSTALL_DIR} .