File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,10 +26,20 @@ if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
2626 mkdir -p $HOME /build/$NEST
2727 pushd $HOME /build/$NEST
2828 export VENV=` python -c " import sys; print(sys.prefix)" ` ;
29- if [ " $TRAVIS_PYTHON_VERSION " == " 3.9" ]; then
30- ln -s /opt/python/3.9/lib/libpython3.9m.so $VENV /lib/libpython3.9.so;
31- export PYTHON_INCLUDE_DIR=$VENV /include/python${TRAVIS_PYTHON_VERSION} m
32- fi
29+
30+ echo -e " -- ls /opt/python/3.9/lib"
31+ ls -l /opt/python/3.9/lib;
32+ echo -e " -- ls $VENV /lib"
33+ ls -l $VENV /lib;
34+ echo -e " -- ls /opt/python/3.9/include/python3.9"
35+ ls /opt/python/3.9/include/python3.9;
36+
37+ ln -s /opt/python/3.9/lib/libpython3.9.so $VENV /lib/libpython3.9.so;
38+ ls -l $VENV /lib/libpython3.9.so
39+ # ln -s /opt/python/3.9/include/python3.9 $VENV/include/python3.9;
40+ # export PYTHON_INCLUDE_DIR=$VENV/include/python3.9;
41+ export PYTHON_INCLUDE_DIR=/opt/python/3.9/include/python3.9
42+
3343 cython --version;
3444 cmake --version;
3545 cmake -DCMAKE_INSTALL_PREFIX=$VENV \
You can’t perform that action at this time.
0 commit comments