Mercurial > p > roundup > code
diff .travis.yml @ 6692:1fbfb4a277d7
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'
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 06 Jun 2022 15:15:31 -0400 |
| parents | 1754f5e888cd |
| children | 0f761d8280f3 |
line wrap: on
line diff
--- a/.travis.yml Mon Jun 06 09:39:58 2022 -0400 +++ b/.travis.yml Mon Jun 06 15:15:31 2022 -0400 @@ -68,7 +68,7 @@ - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi - if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi - if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi - - make && make install + - if [[ $TRAVIS_PYTHON_VERSION != "3.11-dev" ]]; then make && make install; fi - PATH=$VIRTUAL_ENV/bin:$PATH
