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
as documented in issue2551277
1.4.22 doesn't build with:
xapian_wrap.cc: In function ‘PyObject* PyInit__xapian()’:
xapian_wrap.cc:65031:116: error: ‘FLAG_NO_POSITIONS’ is not a member
of ‘Xapian::QueryParser’
65031 | SWIG_Python_SetConstant(d,"QueryParser_FLAG_NO_POSITIONS",
SWIG_From_int(static_cast< int >(Xapian::QueryParser::FLAG_NO_POSITIONS)));
Copy file name to clipboardExpand all lines: .github/workflows/ci-test.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -205,7 +205,7 @@ jobs:
205
205
# Change distutils.sysconfig... to just sysconfig and SO
206
206
# to EXT_SUFFIX to get valid value.
207
207
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
208
-
case "$PYTHON_VERSION" in nightly) echo skipping xapian build;; *) make && sudo make install; esac
208
+
case "$PYTHON_VERSION" in nightly|3.12*) echo skipping xapian build;; *) make && sudo make install; esac
209
209
210
210
- name: Install pytest and other packages needed for running tests
0 commit comments