-
Notifications
You must be signed in to change notification settings - Fork 9
/
exclude_list.yaml
46 lines (38 loc) · 1.7 KB
/
exclude_list.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# List of Python packages to exclude from automatically assembled requirements
#"From assembled <main requirements> exclude <package_name> with <version> on <platform> for <python> version".
# exclude_list template
#- package_name: '<name_of_package>'
# version: '<package_version_with_operator>' / ['<package_version_with_operator>', '<package_version_with_operator>'] # optional
# platform: '<platform>' / ['<platform>', '<platform>', '<platform>'] # optional
# python: '<python_version_with_operator>' / ['<python_version>', '<python_version>', '<python_version>'] # optional
# dbus-python can not be build on Windows
- package_name: 'dbus-python'
platform: ['win32']
# dbus-python can not be build with Python > 3.11 on MacOS
- package_name: 'dbus-python'
platform: 'darwin'
python: '>3.11'
# gevent==1.5.0 can not be build with Python > 3.8
- package_name: 'gevent'
version: '==1.5.0'
python: '>3.8'
# gdbgui==0.13.2.0 leads to installation of gevent 1.5.0 which can not be build
- package_name: 'gdbgui'
version: '==0.13.2.0'
# Python 13.3 does not support Pillow 9.5.0
- package_name: 'Pillow'
version: '==9.5.0'
python: '==3.13'
# gdbgui leads to installation of greenlet which does not support Python 3.13 yet
# issue: https://github.com/cs01/gdbgui/issues/494
- package_name: 'gdbgui'
python: '==3.13'
# some versions of greenlet are not supported by Python 3.13
- package_name: 'greenlet'
version: '<3.0'
python: '==3.13'
# Python 3.13 does not support windows_curses on Windows
# issue: https://github.com/zephyrproject-rtos/windows-curses/issues/69
- package_name: 'windows_curses'
platform: 'win32'
python: '==3.13'