# HG changeset patch # User John Rouillard # Date 1715556963 14400 # Node ID abe8d7bcd22b42e34376aa90ab6bee24dd678c35 # Parent 9009d489bf5a817987e34f264e0ebbe7eadb222a test: get xapian working under github actions and python 3.13 issue2551338 xapian doesn't build in CI for 3.13 python binary search for working version of xapain tarball. try 1.4.22 [skip travis] diff -r 9009d489bf5a -r abe8d7bcd22b .github/workflows/build-xapian.yml --- a/.github/workflows/build-xapian.yml Sun May 12 19:33:56 2024 -0400 +++ b/.github/workflows/build-xapian.yml Sun May 12 19:36:03 2024 -0400 @@ -82,7 +82,7 @@ # Sphinx required to build the xapian python bindings. Use 1.8.5 on # older python and newest on newer. if [[ $PYTHON_VERSION == '3.'* ]] ; then pip install sphinx; fi - XAPIAN_VER="1.4.24"; echo $XAPIAN_VER; + XAPIAN_VER="1.4.22"; echo $XAPIAN_VER; cd /tmp curl -s -O https://oligarchy.co.uk/xapian/$XAPIAN_VER/xapian-bindings-$XAPIAN_VER.tar.xz tar -Jxvf xapian-bindings-$XAPIAN_VER.tar.xz