-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from promised-ai/v-0.3.1
Version 0.3.1
- Loading branch information
Showing
17 changed files
with
376 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.3.1] - | ||
|
||
### Added | ||
|
||
- (#7) Added `PartialEq` derive macro to `Bocpd` and `Argpcpd` structs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "changepoint" | ||
version = "0.14.0" | ||
version = "0.14.1" | ||
authors = [ | ||
"Mike Schmidt <[email protected]>", | ||
"Baxter Eaves <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.3.1] - | ||
- Added Pickle support for `ArgpCpd` and `Bocpd` | ||
- Fix type error that occurred converting numpy `bool_` and `int` types | ||
- Added default arguments `NormalInvChiSquared` constructor (`m=0, k=1, v=1, s2=1`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pychangepoint" | ||
description = "A Python module for changepoint" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
repository = "https://github.com/promised-ai/changepoint" | ||
authors = ["Redpoll <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -16,12 +16,14 @@ name = "changepoint" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
changepoint = { path = "../changepoint" } | ||
bincode = "1.3.3" | ||
changepoint = { path = "../changepoint", features = ["serde1"] } | ||
nalgebra = { version = "0.32" } | ||
numpy = "0.19" | ||
pyo3 = { version ="0.19", features = ["extension-module"] } | ||
rand = { version = "0.8", features = ["small_rng"] } | ||
rv = { version = "0.16", features = ["process", "arraydist"] } | ||
serde = "1.0.175" | ||
|
||
[features] | ||
extension-module = ["pyo3/extension-module"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ build-backend = "maturin" | |
|
||
[project] | ||
name = "changepoint" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = [ | ||
{name = "Redpoll", email = "[email protected]" }, | ||
] | ||
|
@@ -28,3 +28,6 @@ Repository = "https://github.com/promised-ai/changepoint" | |
|
||
[tool.maturin] | ||
bindings = "pyo3" | ||
|
||
[tool.black] | ||
line-length = 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.