Skip to content

Commit

Permalink
Make zope.interface installable on Py3.5 w/o a C compiler
Browse files Browse the repository at this point in the history
Fixes #24.
  • Loading branch information
mgedmin committed Oct 5, 2015
1 parent 42583c3 commit cd2ccd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run(self):
def build_extension(self, ext):
try:
build_ext.build_extension(self, ext)
except (CCompilerError, DistutilsExecError) as e:
except (CCompilerError, DistutilsExecError, OSError) as e:
self._unavailable(e)

def _unavailable(self, e):
Expand Down

0 comments on commit cd2ccd4

Please sign in to comment.