-
-
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.
Merge branch 'main' into ignore_leaf
- Loading branch information
Showing
184 changed files
with
736 additions
and
750 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 | ||
|
@@ -55,13 +55,13 @@ commands: | |
echo ${CI_PULL_REQUEST//*pull\//} | tee merge.txt | ||
if [[ $(cat merge.txt) != "" ]]; then | ||
echo "Merging $(cat merge.txt)"; | ||
git remote add upstream https://github.com/neurodata/scikit-tree.git; | ||
git remote add upstream https://github.com/neurodata/treeple.git; | ||
git pull --ff-only upstream "refs/pull/$(cat merge.txt)/merge"; | ||
git fetch upstream main; | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
IS_32_BIT: ${{ matrix.os[2] == 'x86' }} | ||
|
||
steps: | ||
- name: Checkout scikit-tree | ||
- name: Checkout treeple | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
|
@@ -65,7 +65,7 @@ jobs: | |
if: ${{ runner.os == 'Windows' && env.IS_32_BIT == 'false' }} | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected].1 | ||
uses: pypa/[email protected].2 | ||
# Build all wheels here, apart from macosx_arm64, linux_aarch64 | ||
# cibuildwheel is currently unable to pass configuration flags to | ||
# CIBW_BUILD_FRONTEND https://github.com/pypa/cibuildwheel/issues/1227 | ||
|
@@ -120,7 +120,7 @@ jobs: | |
pip install .[build] | ||
- name: Build wheels | ||
uses: pypa/[email protected].1 | ||
uses: pypa/[email protected].2 | ||
env: | ||
CIBW_BUILD: ${{ matrix.python[0] }}-macosx_arm64 | ||
CIBW_ARCHS_MACOS: arm64 | ||
|
@@ -136,7 +136,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout scikit-tree | ||
- name: Checkout treeple | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
|
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
Oops, something went wrong.