-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP: rename pkg to treeple --------- Co-authored-by: Adam Li <[email protected]> Authored-by: Itsuki Ogihara <[email protected]>
- Loading branch information
Showing
183 changed files
with
728 additions
and
744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ commands: | |
- run: | ||
name: Check-skip | ||
command: | | ||
if [ ! -d "sktree" ]; then | ||
if [ ! -d "treeple" ]; then | ||
echo "Build was not run due to skip, exiting job ${CIRCLE_JOB} for PR ${CIRCLE_PULL_REQUEST}." | ||
circleci-agent step halt; | ||
fi | ||
|
@@ -61,7 +61,7 @@ commands: | |
fi | ||
jobs: | ||
# Build scikit-tree from source | ||
# Build treeple from source | ||
build_scikit_tree: | ||
docker: | ||
# CircleCI maintains a library of pre-built images | ||
|
@@ -86,7 +86,7 @@ jobs: | |
pip install .[build,doc] | ||
- run: | ||
name: build scikit-tree | ||
name: build treeple | ||
command: | | ||
spin build -j2 | ||
|
@@ -162,7 +162,7 @@ jobs: | |
name: Install and configure dependencies | ||
command: | | ||
npm install --global [email protected] | ||
git config --global user.email "circle@scikit-tree.com" | ||
git config --global user.email "circle@treeple.com" | ||
git config --global user.name "Circle Ci" | ||
- add_ssh_keys: | ||
|
@@ -184,7 +184,7 @@ jobs: | |
- save_cache: | ||
key: website-cache | ||
paths: | ||
- ~/sktree | ||
- ~/treeple | ||
|
||
workflows: | ||
build-docs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ exclude = | |
build | ||
build-install | ||
dist | ||
sktree/_lib/ | ||
treeple/_lib/ | ||
.asv | ||
env | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Cython: | ||
- sktree/**/*.pyx.* | ||
- sktree/**/*.pxd.* | ||
- sktree/**/*.pxi.* | ||
- treeple/**/*.pyx.* | ||
- treeple/**/*.pxd.* | ||
- treeple/**/*.pxi.* | ||
|
||
C/C++: | ||
- sktree/**/*.c | ||
- sktree/**/*.c.in | ||
- sktree/**/*.c.old | ||
- sktree/**/*.h | ||
- sktree/**/*.h.in | ||
- sktree/**/*.cpp | ||
- sktree/**/*.cc | ||
- sktree/**/*.cxx | ||
- sktree/**/*.hpp | ||
- treeple/**/*.c | ||
- treeple/**/*.c.in | ||
- treeple/**/*.c.old | ||
- treeple/**/*.h | ||
- treeple/**/*.h.in | ||
- treeple/**/*.cpp | ||
- treeple/**/*.cc | ||
- treeple/**/*.cxx | ||
- treeple/**/*.hpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
steps: | ||
- uses: thomasjpfan/[email protected] | ||
continue-on-error: true | ||
if: github.repository == 'neurodata/scikit-tree' | ||
if: github.repository == 'neurodata/treeple' | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: ".github/label-globs.yml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ coverage | |
.coverage.* | ||
|
||
commit.txt | ||
sktree/_lib/sklearn/ | ||
treeple/_lib/sklearn/ | ||
|
||
*.png | ||
_data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "sktree/_lib/sklearn"] | ||
path = sktree/_lib/sklearn_fork | ||
[submodule "treeple/_lib/sklearn"] | ||
path = treeple/_lib/sklearn_fork | ||
url = https://github.com/neurodata/scikit-learn | ||
branch = submodulev3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
extends: default | ||
|
||
ignore: | | ||
sktree/_lib/ | ||
treeple/_lib/ | ||
.asv/ | ||
rules: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.