-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update CHANGELOG * Bump version 0.24
- Loading branch information
Showing
9 changed files
with
32 additions
and
26 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 = "egobox" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A toolbox for efficient global optimization" | ||
|
@@ -31,10 +31,10 @@ persistent-moe = ["egobox-moe/persistent"] | |
blas = ["ndarray/blas", "egobox-gp/blas", "egobox-moe/blas", "egobox-ego/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.23.0", path = "./doe" } | ||
egobox-gp = { version = "0.23.0", path = "./gp" } | ||
egobox-moe = { version = "0.23.0", path = "./moe", features = ["persistent"] } | ||
egobox-ego = { version = "0.23.0", path = "./ego", features = ["persistent"] } | ||
egobox-doe = { version = "0.24.0", path = "./doe" } | ||
egobox-gp = { version = "0.24.0", path = "./gp" } | ||
egobox-moe = { version = "0.24.0", path = "./moe", features = ["persistent"] } | ||
egobox-ego = { version = "0.24.0", path = "./ego", features = ["persistent"] } | ||
|
||
linfa = { version = "0.7", default-features = false } | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egobox-doe" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A library for design of experiments" | ||
|
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 = "egobox-ego" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A library for efficient global optimization" | ||
|
@@ -16,11 +16,11 @@ persistent = ["egobox-moe/persistent"] | |
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.23.0", path = "../doe", features = [ | ||
egobox-doe = { version = "0.24.0", path = "../doe", features = [ | ||
"serializable", | ||
] } | ||
egobox-gp = { version = "0.23.0", path = "../gp", features = ["serializable"] } | ||
egobox-moe = { version = "0.23.0", path = "../moe", features = [ | ||
egobox-gp = { version = "0.24.0", path = "../gp", features = ["serializable"] } | ||
egobox-moe = { version = "0.24.0", path = "../moe", features = [ | ||
"serializable", | ||
] } | ||
|
||
|
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 = "egobox-gp" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A library for gaussian process modeling" | ||
|
@@ -18,7 +18,7 @@ persistent = ["serializable", "serde_json"] | |
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.23.0", path = "../doe" } | ||
egobox-doe = { version = "0.24.0", path = "../doe" } | ||
|
||
linfa = { version = "0.7", default-features = false } | ||
linfa-pls = { version = "0.7", default-features = false } | ||
|
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 = "egobox-moe" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A library for mixture of expert gaussian processes" | ||
|
@@ -29,8 +29,8 @@ serializable = [ | |
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.23.0", path = "../doe" } | ||
egobox-gp = { version = "0.23.0", path = "../gp" } | ||
egobox-doe = { version = "0.24.0", path = "../doe" } | ||
egobox-gp = { version = "0.24.0", path = "../gp" } | ||
|
||
linfa = { version = "0.7", default-features = false } | ||
linfa-clustering = { version = "0.7", default-features = false } | ||
|
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ python-source = "python" | |
|
||
[tool.poetry] | ||
name = "egobox" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
description = "Python binding for egobox EGO optimizer written in Rust" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
packages = [{ include = "egobox", from = "python" }] | ||
|