File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ branches:
1818
1919dist : focal
2020
21- # - pypy3
2221python :
2322 - 2.7
2423 - 3.10.4
@@ -27,13 +26,14 @@ python:
2726 - 3.6
2827 - 3.11-dev
2928 - nightly
29+ # - pypy3
3030
3131services :
3232 - mysql
3333 - postgresql
3434
3535jobs :
36- allow_failures : # nightly not ready for prime time yet.
36+ allow_failures : # releases not ready for prime time yet.
3737 - python : nightly
3838 - python : 3.11-dev
3939 - python : pypy3
@@ -65,10 +65,10 @@ before_install:
6565 - tar -Jxvf xapian-bindings-$XAPIAN_VER.tar.xz
6666 - cd xapian-bindings-$XAPIAN_VER/
6767 - echo $TRAVIS_PYTHON_VERSION
68- - if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python; fi
69- - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
70- - if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
71- - if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
68+ - if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python --disable-documentation ; fi
69+ - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation ; fi
70+ - if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation ; fi
71+ - if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation ; fi
7272 - case "$TRAVIS_PYTHON_VERSION" in nightly|3.11-dev) echo skipping xapian build;; *) make && make install; esac
7373
7474 - PATH=$VIRTUAL_ENV/bin:$PATH
You can’t perform that action at this time.
0 commit comments