Skip to content

Commit

Permalink
Prepare for release: bump version, tighten dependency constraints (#482)
Browse files Browse the repository at this point in the history
* bump version, tighten dependency constraints

* fix error caused by matplotlib API change
  • Loading branch information
till-m authored Jun 24, 2024
1 parent e34f9d1 commit 783ab91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/visualization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
" steps = len(optimizer.space)\n",
" fig.suptitle(\n",
" 'Gaussian Process and Utility Function After {} Steps'.format(steps),\n",
" fontdict={'size':30}\n",
" fontsize=30\n",
" )\n",
" \n",
" gs = gridspec.GridSpec(2, 1, height_ratios=[3, 1]) \n",
Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bayesian-optimization"
version = "1.4.3"
version = "1.5.0"
description = "Bayesian Optimization package"
authors = ["Fernando Nogueira"]
license = "MIT"
Expand All @@ -9,13 +9,12 @@ packages = [{include = "bayes_opt"}]

[tool.poetry.dependencies]
python = "^3.9"
scikit-learn = ">=1.0.0"
numpy = ">=1.9.0"
scipy = ">=1.0.0"
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]
Expand Down

0 comments on commit 783ab91

Please sign in to comment.