File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 6
6
7
7
__all__ = [
8
8
"BayesianOptimization" ,
9
- "ConstraintModel"
9
+ "ConstraintModel" ,
10
10
"UtilityFunction" ,
11
11
"Events" ,
12
12
"ScreenLogger" ,
13
13
"JSONLogger" ,
14
14
"SequentialDomainReductionTransformer" ,
15
15
]
16
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
+
3
4
setup (
4
5
name = 'bayesian-optimization' ,
5
- version = '1.2.0' ,
6
+ version = "1.3.0" ,
6
7
url = 'https://github.com/fmfn/BayesianOptimization' ,
7
8
packages = find_packages (),
8
9
author = 'Fernando Nogueira' ,
9
10
10
11
description = 'Bayesian Optimization package' ,
11
- long_description = 'A Python implementation of global optimization with gaussian processes.' ,
12
- download_url = 'https://github.com/fmfn/BayesianOptimization/tarball/0.6' ,
12
+ long_description = "A Python implementation of global optimization with gaussian processes." ,
13
13
install_requires = [
14
14
"numpy >= 1.9.0" ,
15
- "scipy >= 0.14 .0" ,
15
+ "scipy >= 1.0 .0" ,
16
16
"scikit-learn >= 0.18.0" ,
17
17
],
18
18
classifiers = [
You can’t perform that action at this time.
0 commit comments