Skip to content

Commit

Permalink
fix make-resources import
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsoul44 committed Aug 1, 2024
1 parent 019b5a9 commit 463134d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "perpetual"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Mutlu Simsek <[email protected]>"]
homepage = "https://perpetual-ml.com"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pip install perpetual
To use in a Rust project, add the following to your Cargo.toml file to get the package from [crates.io](https://crates.io/crates/perpetual).

```toml
perpetual = "0.3.0"
perpetual = "0.3.1"
```

## Paper
Expand Down
4 changes: 2 additions & 2 deletions python-package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-perpetual"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Mutlu Simsek <[email protected]>"]
homepage = "https://perpetual-ml.com"
Expand All @@ -19,7 +19,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
pyo3 = { version = "0.21", features = ["extension-module"] }
perpetual_rs = {package="perpetual", version = "0.3.0", path = "../" }
perpetual_rs = {package="perpetual", version = "0.3.1", path = "../" }
numpy = "0.21"
ndarray = "0.15"
serde_plain = { version = "1.0" }
Expand Down
2 changes: 1 addition & 1 deletion python-package/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "perpetual"
version = "0.3.0"
version = "0.3.1"
description = "A self-generalizing gradient boosting machine which doesn't need hyperparameter optimization"
license = { file = "LICENSE" }
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion scripts/make_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ucimlrepo import fetch_ucirepo
from sklearn.model_selection import train_test_split
from sklearn.datasets import fetch_california_housing, fetch_covtype
from perpetual import convert_input_frame, transform_input_frame
from perpetual.utils import convert_input_frame, transform_input_frame


if __name__ == "__main__":
Expand Down

0 comments on commit 463134d

Please sign in to comment.