-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version * Update changelog * Remove Dockerfile: default maturin image is enough
- Loading branch information
Showing
8 changed files
with
29 additions
and
35 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
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.12.0" | ||
version = "0.13.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A toolbox for efficient global optimization" | ||
|
@@ -31,10 +31,10 @@ persistent-ego = ["egobox-ego/persistent"] | |
blas = ["ndarray/blas", "egobox-gp/blas", "egobox-moe/blas", "egobox-ego/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.12.0", path = "./doe" } | ||
egobox-gp = { version = "0.12.0", path = "./gp" } | ||
egobox-moe = { version = "0.12.0", path = "./moe", features = ["persistent"] } | ||
egobox-ego = { version = "0.12.0", path = "./ego", features = ["persistent"] } | ||
egobox-doe = { version = "0.13.0", path = "./doe" } | ||
egobox-gp = { version = "0.13.0", path = "./gp" } | ||
egobox-moe = { version = "0.13.0", path = "./moe", features = ["persistent"] } | ||
egobox-ego = { version = "0.13.0", path = "./ego", features = ["persistent"] } | ||
|
||
linfa = { version = "0.7", default-features = false } | ||
|
||
|
This file was deleted.
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-doe" | ||
version = "0.12.0" | ||
version = "0.13.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.12.0" | ||
version = "0.13.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A library for efficient global optimization" | ||
|
@@ -16,11 +16,11 @@ persistent = ["serde_json"] | |
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.12.0", path = "../doe", features = [ | ||
egobox-doe = { version = "0.13.0", path = "../doe", features = [ | ||
"serializable", | ||
] } | ||
egobox-gp = { version = "0.12.0", path = "../gp", features = ["serializable"] } | ||
egobox-moe = { version = "0.12.0", path = "../moe", features = [ | ||
egobox-gp = { version = "0.13.0", path = "../gp", features = ["serializable"] } | ||
egobox-moe = { version = "0.13.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.12.0" | ||
version = "0.13.0" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
edition = "2021" | ||
description = "A library for gaussian process modeling" | ||
|
@@ -17,7 +17,7 @@ serializable = ["serde", "linfa/serde"] | |
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "linfa-pls/blas"] | ||
|
||
[dependencies] | ||
egobox-doe = { version = "0.12.0", path = "../doe" } | ||
egobox-doe = { version = "0.13.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.12.0" | ||
version = "0.13.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.12.0", path = "../doe" } | ||
egobox-gp = { version = "0.12.0", path = "../gp" } | ||
egobox-doe = { version = "0.13.0", path = "../doe" } | ||
egobox-gp = { version = "0.13.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.12.0" | ||
version = "0.13.0" | ||
description = "Python binding for egobox EGO optimizer written in Rust" | ||
authors = ["Rémi Lafage <[email protected]>"] | ||
packages = [{ include = "egobox", from = "python" }] | ||
|