File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ dist: focal
2020
2121# - pypy3
2222python :
23- # - 2.7
24- # - 3.10.4
23+ - 2.7
24+ - 3.10.4
2525# - 3.9
2626# - 3.8
27- # - 3.6
27+ - 3.6
2828 - 3.11-dev
2929 - nightly
3030
@@ -52,6 +52,7 @@ addons:
5252 - gpgsm
5353
5454before_install :
55+ # build xapian
5556 - echo "$TRAVIS_PYTHON_VERSION"
5657 # Sphinx required to build the xapian python bindings. Use 1.8.5 on
5758 # older python and newest on newer.
@@ -68,7 +69,7 @@ before_install:
6869 - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
6970 - if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
7071 - if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
71- - make && make install
72+ - case "$TRAVIS_PYTHON_VERSION" in nightly|3.11-dev) echo skipping xapian build;; *) make && make install; esac
7273
7374 - PATH=$VIRTUAL_ENV/bin:$PATH
7475
You can’t perform that action at this time.
0 commit comments