Skip to content

Commit 09c16b3

Browse files
Update catboost version to >=1.1 (#27)
* Update catboost version to `>=1.1` * Bump to v0.3.2, and add `catboost` versioning info * reword README
1 parent 691e068 commit 09c16b3

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CondaPkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[deps.catboost]
22
channel = "conda-forge"
3-
version = "=1.1"
3+
version = ">=1.1"

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "CatBoost"
22
uuid = "e2e10f9a-a85d-4fa9-b6b2-639a32100a12"
33
authors = ["Beacon Biosignals, Inc."]
4-
version = "0.3.1"
4+
version = "0.3.2"
55

66
[deps]
77
MLJModelInterface = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,14 @@ preds = predict(model, eval_data)
5858

5959
end # module
6060
```
61+
62+
# Restricting Python catboost version
63+
64+
By default, `CatBoost.jl` installs the latest compatible version of `catboost` (version `>=1.1`) in your current `CondaPkg.jl` environment. To install a specific version, create a `CondaPkg.toml` file using `CondaPkg.jl`. Below is an example for specifying `catboost` version `v1.1`:
65+
66+
```julia
67+
using CondaPkg
68+
CondaPkg.add("catboost"; version="=1.1")
69+
```
70+
71+
This will create a `CondaPkg.toml` file in your current envrionment with the restricted `catboost` version. For more information on managing Conda environments with `CondaPkg.jl`, refer to the [official documentation](https://github.com/cjdoris/CondaPkg.jl).

0 commit comments

Comments
 (0)