@@ -4,23 +4,23 @@ set -eu
44
55echo " cxx version: $CXX $( $CXX --version) "
66echo " cxx std: $CXX_STD "
7- echo " python3 path: $( which python3 ) "
8- echo " python3 version: $( python3 --version) "
7+ echo " python path: $( which python ) "
8+ echo " python version: $( python --version) "
99
1010if ! which faber > /dev/null; then
1111 echo " Installing faber..."
12- python3 -m pip install --upgrade pip
13- python3 -m pip install -U faber
12+ python -m pip install --upgrade pip
13+ python -m pip install -U faber
1414fi
1515echo " faber version: $( faber -v) "
1616
1717# find and set PY_LDFLAGS and PY_INC_PATH
18- eval $( python3 .github/get-py-env.py)
18+ eval $( python .github/get-py-env.py)
1919
2020echo " PY_INC_PATH=$PY_INC_PATH "
2121echo " PY_LDFLAGS=$PY_LDFLAGS "
2222
23- case $( python3 -config --abiflags) in
23+ case $( python -config --abiflags) in
2424 * t* )
2525 # When running with free-threaded, we always want to disable the GIL
2626 # even for extensions without the mod_gil_not_used() flag
@@ -29,10 +29,10 @@ case $(python3-config --abiflags) in
2929esac
3030
3131# this could be set by LD_LIBRARY_PATH but faber overrides it
32- prefix=$( python3 -config --prefix)
32+ prefix=$( python -config --prefix)
3333echo " ${prefix} /lib" > /etc/ld.so.conf.d/boost-ci.conf && ldconfig
3434
35- sed -e " s/\$ PYTHON/python3 /g" .ci/faber > $HOME /.faber
35+ sed -e " s/\$ PYTHON/python /g" .ci/faber > $HOME /.faber
3636
3737faber \
3838 --with-boost-include=${BOOST_PY_DEPS} \
0 commit comments