Skip to content

Commit 42f42a7

Browse files
committed
Disable zope_interface
1 parent 0b3689e commit 42f42a7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ci/constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class TargetPython(Enum):
2828
'vlc',
2929
# need extra gfortran NDK system add-on
3030
'lapack', 'scipy',
31+
# Outdated and there's a chance that is now useless.
32+
'zope_interface',
3133
])
3234

3335
BROKEN_RECIPES = {

pythonforandroid/recipes/zope_interface/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def build_arch(self, arch):
1919
# folders (once is installed), that leads into an ImportError.
2020
# Here we intentionally apply a patch to solve that, so, in case that
2121
# this is solved in the future an error will be triggered
22-
zope_install = join(self.ctx.get_site_packages_dir(arch), 'zope')
22+
zope_install = join(self.ctx.get_site_packages_dir(), 'zope')
2323
self.apply_patch('fix-init.patch', arch.arch, build_dir=zope_install)
2424

2525
def prebuild_arch(self, arch):

0 commit comments

Comments
 (0)