Skip to content

Commit

Permalink
Fix python2.7 C extension
Browse files Browse the repository at this point in the history
  • Loading branch information
slundberg committed Apr 10, 2018
1 parent 5ee7f58 commit 892cbd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='shap',
version='0.13.4',
version='0.13.5',
description='A unified approach to explain the output of any machine learning model.',
url='http://github.com/slundberg/shap',
author='Scott Lundberg',
Expand Down
2 changes: 1 addition & 1 deletion shap/_cext.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static struct PyModuleDef moduledef = {
#if PY_MAJOR_VERSION >= 3
PyMODINIT_FUNC PyInit__cext(void)
#else
void init_cext(void)
PyMODINIT_FUNC init_cext(void)
#endif
{
#if PY_MAJOR_VERSION >= 3
Expand Down

0 comments on commit 892cbd3

Please sign in to comment.