Skip to content

Commit 16ee490

Browse files
committed
fix: add Pillow dependency and skip ruamel.yaml.clib on py3.13
* Pillow needs libjpeg-dev * ruamel.yaml.clib 0.2.8 does not support python 3.13 Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
1 parent 2eaa90a commit 16ee490

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

exclude_list.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,8 @@
4444
- package_name: 'windows_curses'
4545
platform: 'win32'
4646
python: '==3.13'
47+
48+
# Python 13.3 does not support ruamel.yaml.clib 0.2.8
49+
- package_name: 'ruamel.yaml.clib'
50+
version: '==0.2.8'
51+
python: '==3.13'

os_dependencies/ubuntu.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ sudo apt install libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev
66

77
# dbus-python needs build dependecies
88
sudo apt-get install cmake build-essential libdbus-1-dev libdbus-glib-1-dev -y
9+
10+
# Pillow needs libjpeg-dev
11+
sudo apt-get install libjpeg-dev -y

0 commit comments

Comments
 (0)