File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ class TargetPython(Enum):
16
16
# https://github.com/kivy/python-for-android/issues/550
17
17
'audiostream' ,
18
18
'brokenrecipe' ,
19
- # https://github.com/kivy/python-for-android/issues/1409
20
- 'enaml' ,
21
19
'evdev' ,
22
20
# distutils.errors.DistutilsError
23
21
# Could not find suitable distribution for Requirement.parse('cython')
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ def format(self, record):
44
44
45
45
46
46
logger = logging .getLogger ('p4a' )
47
- if not hasattr ( logger , 'touched' ): # Necessary as importlib reloads
48
- # this, which would add a second
49
- # handler and reset the level
47
+ # Necessary as importlib reloads this,
48
+ # which would add a second handler and reset the level
49
+ if not hasattr ( logger , 'touched' ):
50
50
logger .setLevel (logging .INFO )
51
51
logger .touched = True
52
52
ch = logging .StreamHandler (stderr )
Original file line number Diff line number Diff line change 4
4
class EnamlRecipe (CppCompiledComponentsPythonRecipe ):
5
5
site_packages_name = 'enaml'
6
6
version = '0.9.8'
7
- url = 'https://github.com/nucleic/enaml/archive/master .zip'
7
+ url = 'https://github.com/nucleic/enaml/archive/{version} .zip'
8
8
patches = ['0001-Update-setup.py.patch' ] # Remove PyQt dependency
9
9
depends = ['setuptools' , 'atom' , 'kiwisolver' ]
10
10
You can’t perform that action at this time.
0 commit comments