Skip to content

Commit 0a6097e

Browse files
authored
Merge pull request #154 from JuliaAI/dev
Update readme to reflect new ownership
2 parents 3fcb5b0 + 2b08211 commit 0a6097e

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

.github/workflows/CI.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
name: CI
22
on:
3-
- push
4-
- pull_request
3+
pull_request:
4+
branches:
5+
- master
6+
- dev
7+
push:
8+
branches:
9+
- master
10+
- dev
11+
tags: '*'
512
jobs:
613
test:
714
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -11,6 +18,7 @@ jobs:
1118
matrix:
1219
version:
1320
- '1.0'
21+
- '1.6'
1422
- '1' # automatically expands to the latest stable 1.x release of Julia
1523
os:
1624
- ubuntu-latest

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
# DecisionTree.jl
1+
# DecisionTree.jl
22

3-
[![CI](https://github.com/bensadeghi/DecisionTree.jl/workflows/CI/badge.svg)](https://github.com/bensadeghi/DecisionTree.jl/actions?query=workflow%3ACI)
4-
[![Codecov](https://codecov.io/gh/bensadeghi/DecisionTree.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/bensadeghi/DecisionTree.jl)
3+
[![CI](https://github.com/JuliaAI/DecisionTree.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/DecisionTree.jl/actions?query=workflow%3ACI)
4+
[![Codecov](https://codecov.io/gh/JuliaAI/DecisionTree.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaAI/DecisionTree.jl)
55
[![Docs Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliahub.com/docs/DecisionTree/pEDeB/0.10.11/)
66

7-
### Disclaimer: this package is no longer maintained.
8-
97
Julia implementation of Decision Tree (CART) and Random Forest algorithms
108

9+
Created and developed by Ben Sadeghi (@bensadeghi). Now maintained by
10+
the [JuliaAI](https://github.com/JuliaAI) organization.
11+
1112
Available via:
1213
* [AutoMLPipeline.jl](https://github.com/IBM/AutoMLPipeline.jl) - create complex ML pipeline structures using simple expressions
1314
* [CombineML.jl](https://github.com/ppalmes/CombineML.jl) - a heterogeneous ensemble learning package

src/DecisionTree.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__precompile__()
22

3-
module DecisionTree
3+
module DecisionTree
44

55
import Base: length, show, convert, promote_rule, zero
66
using DelimitedFiles

0 commit comments

Comments
 (0)