Skip to content

Commit 05941f7

Browse files
authored
Merge pull request #367 from ACRF-Image-X-Institute/master
update version and setup.py
2 parents 8e5c89f + 73ae2db commit 05941f7

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

bayes_opt/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66

77
__all__ = [
88
"BayesianOptimization",
9-
"ConstraintModel"
9+
"ConstraintModel",
1010
"UtilityFunction",
1111
"Events",
1212
"ScreenLogger",
1313
"JSONLogger",
1414
"SequentialDomainReductionTransformer",
1515
]
16+

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
from setuptools import setup, find_packages
22

3+
34
setup(
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="[email protected]",
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=[

0 commit comments

Comments
 (0)