Skip to content

Commit

Permalink
Disable zope_interface
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Oct 12, 2021
1 parent 0b3689e commit 42f42a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ci/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class TargetPython(Enum):
'vlc',
# need extra gfortran NDK system add-on
'lapack', 'scipy',
# Outdated and there's a chance that is now useless.
'zope_interface',
])

BROKEN_RECIPES = {
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/zope_interface/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def build_arch(self, arch):
# folders (once is installed), that leads into an ImportError.
# Here we intentionally apply a patch to solve that, so, in case that
# this is solved in the future an error will be triggered
zope_install = join(self.ctx.get_site_packages_dir(arch), 'zope')
zope_install = join(self.ctx.get_site_packages_dir(), 'zope')
self.apply_patch('fix-init.patch', arch.arch, build_dir=zope_install)

def prebuild_arch(self, arch):
Expand Down

0 comments on commit 42f42a7

Please sign in to comment.