You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ $PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python --disable-documentation; fi
114
+
# edit the configure script.
115
+
# distutils.sysconfig.get_config_vars('SO') doesn't work for
116
+
# 3.11 or newer.
117
+
# Change distutils.sysconfig... to just sysconfig and SO
118
+
# to EXT_SUFFIX to get valid value.
119
+
if [[ $PYTHON_VERSION == "3."* ]]; then sed -i -e '/PYTHON3_SO=/s/distutils\.//g' -e '/PYTHON3_SO=/s/"SO"/"EXT_SUFFIX"/g' configure; ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi
120
+
case "$PYTHON_VERSION" in nightly) echo skipping xapian build;; *) make && make install; esac
121
+
100
122
- name: Install pytest and other packages needed for running tests
0 commit comments