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):
1616 # https://github.com/kivy/python-for-android/issues/550
1717 'audiostream' ,
1818 'brokenrecipe' ,
19- # https://github.com/kivy/python-for-android/issues/1409
20- 'enaml' ,
2119 'evdev' ,
2220 # distutils.errors.DistutilsError
2321 # 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):
4444
4545
4646logger = 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' ):
5050 logger .setLevel (logging .INFO )
5151 logger .touched = True
5252 ch = logging .StreamHandler (stderr )
Original file line number Diff line number Diff line change 44class EnamlRecipe (CppCompiledComponentsPythonRecipe ):
55 site_packages_name = 'enaml'
66 version = '0.9.8'
7- url = 'https://github.com/nucleic/enaml/archive/master .zip'
7+ url = 'https://github.com/nucleic/enaml/archive/{version} .zip'
88 patches = ['0001-Update-setup.py.patch' ] # Remove PyQt dependency
99 depends = ['setuptools' , 'atom' , 'kiwisolver' ]
1010
You can’t perform that action at this time.
0 commit comments