Skip to content

Commit 004b3de

Browse files
committed
disable xapian for python 3.11-dev
do not install xapian for python-3.11-dev tests. Build is failing and I am not sure why. /home/travis/virtualenv/python3.11-dev/bin/python3 -c 'import os;os.chdir("xapian");import _xapian' Traceback (most recent call last): File "<string>", line 1, in <module> ModuleNotFoundError: No module named '_xapian'
1 parent 408b0db commit 004b3de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ before_install:
6868
- if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
6969
- if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
7070
- if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
71-
- make && make install
71+
- if [[ $TRAVIS_PYTHON_VERSION != "3.11-dev" ]]; then make && make install; fi
7272

7373
- PATH=$VIRTUAL_ENV/bin:$PATH
7474

0 commit comments

Comments
 (0)