-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switched to poetry packaging * fix my mistakes in viz notebook * Update run_tests.yml * add install poetry step to CI * remove support for 3.8 as well * fix accidental comment of numpy dependency * hard code package name into __init__ * update docstring tests * fix docstring job for poetry packaging --------- Co-authored-by: till-m <36440677+till-m@users.noreply.github.com>
- Loading branch information
Showing
10 changed files
with
76 additions
and
101 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -35,3 +35,5 @@ docsrc/.ipynb_checkpoints/* | |
docsrc/*.ipynb | ||
docsrc/static/* | ||
docsrc/README.md | ||
|
||
poetry.lock |
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
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[tool.poetry] | ||
name = "bayesian-optimization" | ||
version = "1.4.3" | ||
description = "Bayesian Optimization package" | ||
authors = ["Fernando Nogueira"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "bayes_opt"}] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
scikit-learn = ">=1.0.0" | ||
numpy = ">=1.9.0" | ||
scipy = ">=1.0.0" | ||
colorama = "^0.4.6" | ||
|
||
|
||
|
||
[tool.poetry.group.dev] # for testing/developing | ||
optional = true | ||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.0.0" | ||
pytest-cov = "^4.1.0" | ||
coverage = "^7.4.1" | ||
pydocstyle = "^6.3.0" | ||
|
||
|
||
[tool.poetry.group.nbtools] # for running/converting notebooks | ||
optional = true | ||
[tool.poetry.group.nbtools.dependencies] | ||
nbformat = "^5.9.2" | ||
nbconvert = "^7.14.2" | ||
jupyter = "^1.0.0" | ||
matplotlib = "^3.0" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
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