@@ -45,7 +45,7 @@ class TargetPython(Enum):
45
45
'doubleratchet' ,
46
46
'omemo' ,
47
47
'cryptography' ,
48
- # https://github.com/kivy/python- for-android/issues/1405
48
+ # requires `libpq-dev` system dependency e.g. for `pg_config` binary
49
49
'psycopg2' ,
50
50
'pygame' ,
51
51
# most likely some setup in the Docker container, because it works in host
@@ -63,7 +63,7 @@ class TargetPython(Enum):
63
63
'zeroconf' ,
64
64
'zope' ,
65
65
])
66
- BROKEN_RECIPES_PYTHON3_CRYSTAX = set ([
66
+ BROKEN_RECIPES_PYTHON3 = set ([
67
67
'brokenrecipe' ,
68
68
# enum34 is not compatible with Python 3.6 standard library
69
69
# https://stackoverflow.com/a/45716067/185510
@@ -83,8 +83,8 @@ class TargetPython(Enum):
83
83
'icu' ,
84
84
# https://github.com/kivy/python-for-android/issues/1354
85
85
'kivent_core' , 'kivent_cymunk' , 'kivent_particles' , 'kivent_polygen' ,
86
- # https://github.com/kivy/python- for-android/issues/1405
87
- 'libpq' , ' psycopg2' ,
86
+ # requires `libpq-dev` system dependency e.g. for `pg_config` binary
87
+ 'psycopg2' ,
88
88
'netifaces' ,
89
89
# https://github.com/kivy/python-for-android/issues/1315 ?
90
90
'opencv' ,
@@ -97,13 +97,9 @@ class TargetPython(Enum):
97
97
'sympy' ,
98
98
'vlc' ,
99
99
])
100
- # to be created via https://github.com/kivy/python-for-android/issues/1514
101
- BROKEN_RECIPES_PYTHON3 = set ([
102
- ])
103
100
104
101
BROKEN_RECIPES = {
105
102
TargetPython .python2 : BROKEN_RECIPES_PYTHON2 ,
106
- TargetPython .python3crystax : BROKEN_RECIPES_PYTHON3_CRYSTAX ,
107
103
TargetPython .python3 : BROKEN_RECIPES_PYTHON3 ,
108
104
}
109
105
# recipes that were already built will be skipped
0 commit comments