Skip to content

Commit 0ed8ad0

Browse files
committed
CI: build with notmuch2
python3-notmuch2 is part of ubuntu 21.04 and later, so we need to bump that, too.
1 parent 14ffd30 commit 0ed8ad0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1111
name: Build (Python ${{ matrix.python-version }})
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-21.04
1313
steps:
1414
- uses: actions/checkout@v2
1515
with:
@@ -24,11 +24,11 @@ jobs:
2424
shell: bash
2525
run: |
2626
sudo apt-get update
27-
sudo apt-get install -y notmuch python3-notmuch python3-venv flake8
27+
sudo apt-get install -y notmuch python3-notmuch2 python3-venv flake8
2828
python3 -m venv env
2929
source ./env/bin/activate
3030
pip install setuptools setuptools_scm pytest dkimpy
31-
ln -s /usr/lib/python3/dist-packages/notmuch ./env/lib/python*/site-packages
31+
ln -s /usr/lib/python3/dist-packages/notmuch2 ./env/lib/python*/site-packages
3232
- name: flake8 lint
3333
run: |
3434
source ./env/bin/activate

0 commit comments

Comments
 (0)