Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
Deathn0t committed Jun 19, 2020
1 parent 31db246 commit f76ba4d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions skopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
__version__ = "0.8.dev0"
__version__ = "0.8.1"

if __SKOPT_SETUP__:
import sys
sys.stderr.write('Partial import of skopt during the build process.\n')

sys.stderr.write("Partial import of skopt during the build process.\n")
# We are not importing the rest of scikit-optimize during the build
# process, as it may not be compiled yet
else:
Expand All @@ -58,6 +59,7 @@
from .utils import expected_minimum
from .utils import expected_minimum_random_sampling
from .utils import load

__all__ = (
"acquisition",
"benchmarks",
Expand All @@ -76,7 +78,7 @@
"load",
"expected_minimum",
"BayesSearchCV",
"Space"
"Space",
)
IS_PYPY = platform.python_implementation() == 'PyPy'
IS_PYPY = platform.python_implementation() == "PyPy"
_IS_32BIT = 8 * struct.calcsize("P") == 32

0 comments on commit f76ba4d

Please sign in to comment.