Skip to content

Commit

Permalink
Merge pull request #6 from perpetual-ml/doc_update
Browse files Browse the repository at this point in the history
doc update
  • Loading branch information
deadsoul44 committed Sep 19, 2024
2 parents ba4e520 + d284ff9 commit bac12bd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Test and Deploy
on: [pull_request, push]
on: [pull_request]

jobs:
windows-build-test:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: docs
on:
push:
branches:
- "main"
on: [pull_request]

permissions:
contents: write
jobs:
Expand Down
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.4.0"
version = "0.4.4"
edition = "2021"
authors = ["Mutlu Simsek <msimsek@perpetual-ml.com>"]
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 @@ -61,7 +61,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.4.0"
perpetual = "0.4.4"
```

## 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.4.0"
version = "0.4.4"
edition = "2021"
authors = ["Mutlu Simsek <msimsek@perpetual-ml.com>"]
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.4.0", path = "../" }
perpetual_rs = {package="perpetual", version = "0.4.4", path = "../" }
numpy = "0.21"
ndarray = "0.15"
serde_plain = { version = "1.0" }
Expand Down
4 changes: 2 additions & 2 deletions 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.4.0"
version = "0.4.4"
description = "A self-generalizing gradient boosting machine which doesn't need hyperparameter optimization"
license = { file = "LICENSE" }
keywords = [
Expand All @@ -31,7 +31,7 @@ classifiers = [
]

[project.optional-dependencies]
dev = ["pandas", "polars", "pyarrow", "maturin", "pytest", "seaborn", "scikit-learn", "mkdocs-material==9.*", "mkdocstrings[python]==0.22.0", "mkdocs-autorefs", "ruff>=0.0.272", "typing-extensions", "ucimlrepo"]
dev = ["pandas", "polars", "pyarrow", "maturin", "pytest", "seaborn", "scikit-learn", "mkdocs-material==9.*", "mkdocstrings[python]==0.26.1", "mkdocs-autorefs", "ruff>=0.0.272", "typing-extensions", "ucimlrepo"]

[tool.maturin]
sdist-include = ["LICENSE", "README.md"]
Expand Down

0 comments on commit bac12bd

Please sign in to comment.