Skip to content

Commit 26b4eba

Browse files
committed
Fix github actions build
Broken due to missing libcairo and libgirepository-2.0.
1 parent f3b8f85 commit 26b4eba

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
python:
13-
- "3.10"
1413
- "3.11"
1514
- "3.12"
15+
- "3.13"
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -22,9 +22,12 @@ jobs:
2222

2323
- name: Install build dependencies
2424
run: |
25+
sudo apt-get update && \
2526
sudo apt-get install -qy \
2627
gettext \
27-
libgirepository1.0-dev
28+
libcairo2-dev \
29+
libgirepository1.0-dev \
30+
libgirepository-2.0-dev
2831
2932
- run: pip install -U pip
3033
- run: pip install setuptools wheel

0 commit comments

Comments
 (0)