Skip to content

Commit

Permalink
Merge pull request #367 from ACRF-Image-X-Institute/master
Browse files Browse the repository at this point in the history
update version and setup.py
  • Loading branch information
bwheelz36 authored Oct 12, 2022
2 parents 8e5c89f + 73ae2db commit 05941f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
3 changes: 2 additions & 1 deletion bayes_opt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@

__all__ = [
"BayesianOptimization",
"ConstraintModel"
"ConstraintModel",
"UtilityFunction",
"Events",
"ScreenLogger",
"JSONLogger",
"SequentialDomainReductionTransformer",
]

2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from setuptools import setup, find_packages


setup(
name='bayesian-optimization',
version='1.2.0',
version="1.3.0",
url='https://github.com/fmfn/BayesianOptimization',
packages=find_packages(),
author='Fernando Nogueira',
author_email="[email protected]",
description='Bayesian Optimization package',
long_description='A Python implementation of global optimization with gaussian processes.',
download_url='https://github.com/fmfn/BayesianOptimization/tarball/0.6',
long_description="A Python implementation of global optimization with gaussian processes.",
install_requires=[
"numpy >= 1.9.0",
"scipy >= 0.14.0",
"scipy >= 1.0.0",
"scikit-learn >= 0.18.0",
],
classifiers=[
Expand Down

0 comments on commit 05941f7

Please sign in to comment.