Skip to content

Commit b34fed9

Browse files
committed
sudo make install; add 3.11 python.
1 parent f58542a commit b34fed9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
# Run in all these versions of Python
25-
python-version: [ "2.7", "3.10" ]
25+
python-version: [ "2.7", "3.10", "3.11" ]
2626
#python-version: [ "2.7", "3.10", "3.9", "3.8", "3.6" ]
2727
# use for multiple os or ubuntu versions
2828
# os: [ubuntu-latest, macos-latest, windows-latest]
@@ -117,7 +117,7 @@ jobs:
117117
# Change distutils.sysconfig... to just sysconfig and SO
118118
# to EXT_SUFFIX to get valid value.
119119
if [[ $PYTHON_VERSION == "3."* ]]; then sed -i -e '/PYTHON3_SO=/s/distutils\.//g' -e '/PYTHON3_SO=/s/"SO"/"EXT_SUFFIX"/g' configure; ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi
120-
case "$PYTHON_VERSION" in nightly) echo skipping xapian build;; *) make && make install; esac
120+
case "$PYTHON_VERSION" in nightly) echo skipping xapian build;; *) make && sudo make install; esac
121121
122122
- name: Install pytest and other packages needed for running tests
123123
run: pip install codecov flake8 pytest pytest-cov requests

0 commit comments

Comments
 (0)