Skip to content

Commit

Permalink
Fix include .pxd definitions for sklearn.tree in wheels (#12381)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoopamSharma authored and jnothman committed Nov 14, 2018
1 parent ecad9b4 commit 23f06ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sklearn/tree/setup.py
Expand Up @@ -31,6 +31,10 @@ def configuration(parent_package="", top_path=None):
extra_compile_args=["-O3"])

config.add_subpackage("tests")
config.add_data_files("_criterion.pxd")
config.add_data_files("_splitter.pxd")
config.add_data_files("_tree.pxd")
config.add_data_files("_utils.pxd")

return config

Expand Down

0 comments on commit 23f06ca

Please sign in to comment.