Skip to content

Commit d77e3ee

Browse files
authored
Merge pull request #22 from getumen/update-treelite
⬆️ update treelite
2 parents 97ed1a9 + 5d31191 commit d77e3ee

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ENV PATH=$PATH:/usr/local/go/bin
2121
ENV LIBRARY_PATH=/usr/local/lib${LIBRARY_PATH:+:$LIBRARY_PATH}
2222
ENV LD_LIBRARY_PATH=/usr/local/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
2323

24-
RUN cd /tmp/ && git clone https://github.com/dmlc/treelite.git -b 2.3.0 \
24+
RUN cd /tmp/ && git clone https://github.com/dmlc/treelite.git -b 3.0.0 \
2525
&& cd treelite \
2626
&& mkdir build && cd build \
2727
&& cmake .. \

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
LIBRARY_PATH: /usr/local/lib
1111
LD_LIBRARY_PATH: /usr/local/lib
12-
TREELITE_VERSION: 2.3.0
12+
TREELITE_VERSION: 3.0.0
1313

1414
jobs:
1515

.github/workflows/reviewdog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
env:
77
LIBRARY_PATH: /usr/local/lib
88
LD_LIBRARY_PATH: /usr/local/lib
9-
TREELITE_VERSION: 2.3.0
9+
TREELITE_VERSION: 3.0.0
1010

1111
jobs:
1212
golangci-lint:

.vscode/launch.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Package",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"program": "${fileDirname}"
13+
}
14+
]
15+
}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- [Usage](#usage)
1414
- [Documentation](#documentation)
1515

16-
This binding currently works for treelite 2.3.0.
16+
This binding currently works for treelite 3.0.0.
1717

1818
## Prerequirements
1919

@@ -32,7 +32,7 @@ the following package is installed.
3232
#### 2. install treelite
3333

3434
```bash
35-
git clone https://github.com/dmlc/treelite.git -b 2.3.0
35+
git clone https://github.com/dmlc/treelite.git -b 3.0.0
3636
cd treelite \
3737
mkdir build && cd build \
3838
cmake .. \

testdata/requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
xgboost==1.6.2
22
scikit-learn==1.1.2
3-
treelite==2.4.0
4-
treelite-runtime==2.4.0
5-
pandas==1.4.4
3+
treelite==3.0.0
4+
treelite-runtime==3.0.0
5+
pandas==1.4.4

0 commit comments

Comments
 (0)