bayesian-optimization 2.0.2__tar.gz → 2.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bayesian-optimization
3
- Version: 2.0.2
3
+ Version: 2.0.3
4
4
  Summary: Bayesian Optimization package
5
5
  License: MIT
6
6
  Author: Fernando Nogueira
@@ -15,7 +15,8 @@ Classifier: Programming Language :: Python :: 3.13
15
15
  Requires-Dist: colorama (>=0.4.6,<0.5.0)
16
16
  Requires-Dist: numpy (>=1.25)
17
17
  Requires-Dist: scikit-learn (>=1.0.0,<2.0.0)
18
- Requires-Dist: scipy (>=1.0.0,<2.0.0)
18
+ Requires-Dist: scipy (>=1.0.0,<2.0.0) ; python_version < "3.13"
19
+ Requires-Dist: scipy (>=1.14.1,<2.0.0) ; python_version >= "3.13"
19
20
  Description-Content-Type: text/markdown
20
21
 
21
22
  <div align="center">
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "bayesian-optimization"
3
- version = "2.0.2"
3
+ version = "2.0.3"
4
4
  description = "Bayesian Optimization package"
5
5
  authors = ["Fernando Nogueira"]
6
6
  license = "MIT"
@@ -11,7 +11,10 @@ packages = [{include = "bayes_opt"}]
11
11
  python = "^3.9"
12
12
  scikit-learn = "^1.0.0"
13
13
  numpy = ">=1.25"
14
- scipy = "^1.0.0"
14
+ scipy = [
15
+ {version = "^1.0.0", python = "<3.13"},
16
+ {version = "^1.14.1", python = ">=3.13"}
17
+ ]
15
18
  colorama = "^0.4.6"
16
19
 
17
20