Skip to content

Commit 783ab91

Browse files
authoredJun 24, 2024
Prepare for release: bump version, tighten dependency constraints (#482)
* bump version, tighten dependency constraints * fix error caused by matplotlib API change
1 parent e34f9d1 commit 783ab91

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed
 

‎examples/visualization.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
" steps = len(optimizer.space)\n",
141141
" fig.suptitle(\n",
142142
" 'Gaussian Process and Utility Function After {} Steps'.format(steps),\n",
143-
" fontdict={'size':30}\n",
143+
" fontsize=30\n",
144144
" )\n",
145145
" \n",
146146
" gs = gridspec.GridSpec(2, 1, height_ratios=[3, 1]) \n",

‎pyproject.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bayesian-optimization"
3-
version = "1.4.3"
3+
version = "1.5.0"
44
description = "Bayesian Optimization package"
55
authors = ["Fernando Nogueira"]
66
license = "MIT"
@@ -9,13 +9,12 @@ packages = [{include = "bayes_opt"}]
99

1010
[tool.poetry.dependencies]
1111
python = "^3.9"
12-
scikit-learn = ">=1.0.0"
13-
numpy = ">=1.9.0"
14-
scipy = ">=1.0.0"
12+
scikit-learn = "^1.0.0"
13+
numpy = "^1.9.0"
14+
scipy = "^1.0.0"
1515
colorama = "^0.4.6"
1616

1717

18-
1918
[tool.poetry.group.dev] # for testing/developing
2019
optional = true
2120
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)