Skip to content

Commit

Permalink
Fix circleci
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Li <adam2392@gmail.com>
  • Loading branch information
adam2392 committed Jun 20, 2023
1 parent 8b06c45 commit 7463904
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ provide a natural way to compute neighbors based on the splits. We provide
an API for extracting the nearest neighbors from a tree-model. This provides
an API-like interface similar to :class:`~sklearn.neighbors.NearestNeighbors`.

.. currentmodule:: sktree.neighbors
.. currentmodule:: sktree
.. autosummary::
:toctree: generated/

Expand Down
5 changes: 3 additions & 2 deletions sktree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
# process, as it may not be compiled yet
else:
try:
from . import _lib, tree, ensemble, experimental, neighbors
from . import _lib, tree, ensemble, experimental
from .neighbors import NearestNeighborsMetaEstimator
from .ensemble._unsupervised_forest import (
UnsupervisedRandomForest,
UnsupervisedObliqueRandomForest,
Expand All @@ -59,7 +60,7 @@
"tree",
"experimental",
"ensemble",
"neighbors",
"NearestNeighborsMetaEstimator",
"ObliqueRandomForestClassifier",
"ObliqueRandomForestRegressor",
"PatchObliqueRandomForestClassifier",
Expand Down

0 comments on commit 7463904

Please sign in to comment.