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 66
77__all__ = [
88 "BayesianOptimization" ,
9- "ConstraintModel"
9+ "ConstraintModel" ,
1010 "UtilityFunction" ,
1111 "Events" ,
1212 "ScreenLogger" ,
1313 "JSONLogger" ,
1414 "SequentialDomainReductionTransformer" ,
1515]
16+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
3+
34setup (
45 name = 'bayesian-optimization' ,
5- version = '1.2.0' ,
6+ version = "1.3.0" ,
67 url = 'https://github.com/fmfn/BayesianOptimization' ,
78 packages = find_packages (),
89 author = 'Fernando Nogueira' ,
910 author_email = "fmfnogueira@gmail.com" ,
1011 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." ,
1313 install_requires = [
1414 "numpy >= 1.9.0" ,
15- "scipy >= 0.14 .0" ,
15+ "scipy >= 1.0 .0" ,
1616 "scikit-learn >= 0.18.0" ,
1717 ],
1818 classifiers = [
You can’t perform that action at this time.
0 commit comments