Skip to content

Commit 963dbaa

Browse files
committed
Remove zope patch that no longer seems to be necessary.
1 parent 166da26 commit 963dbaa

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pythonforandroid/recipes/zope_interface/__init__.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from pythonforandroid.recipe import PythonRecipe
22
from pythonforandroid.toolchain import current_directory
3-
from os.path import join
43
import sh
54

65

@@ -13,15 +12,6 @@ class ZopeInterfaceRecipe(PythonRecipe):
1312
depends = ['setuptools']
1413
patches = ['no_tests.patch']
1514

16-
def build_arch(self, arch):
17-
super().build_arch(arch)
18-
# The zope.interface module lacks of the __init__.py file in one of his
19-
# folders (once is installed), that leads into an ImportError.
20-
# Here we intentionally apply a patch to solve that, so, in case that
21-
# this is solved in the future an error will be triggered
22-
zope_install = join(self.ctx.get_site_packages_dir(arch), 'zope')
23-
self.apply_patch('fix-init.patch', arch.arch, build_dir=zope_install)
24-
2515
def prebuild_arch(self, arch):
2616
super().prebuild_arch(arch)
2717
with current_directory(self.get_build_dir(arch.arch)):

0 commit comments

Comments
 (0)