Skip to content

Commit d5b168e

Browse files
authored
bump version (#369)
1 parent 7f6e8f7 commit d5b168e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

preliz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
__all__ = ["maxent", "mle", "ppa", "roulette", "quartile"]
1616

17-
__version__ = "0.4.0"
17+
__version__ = "0.4.1"
1818

1919
_log = logging.getLogger("preliz")
2020

preliz/internal/plot_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
import traceback
44
import sys
55

6-
from IPython import get_ipython
76

87
try:
8+
from IPython import get_ipython
99
from ipywidgets import FloatSlider, IntSlider, FloatText, IntText, Checkbox, ToggleButton
1010
except ImportError:
1111
pass
12+
1213
from arviz import plot_kde, plot_ecdf, hdi
1314
from arviz.stats.density_utils import _kde_linear
1415
import numpy as np

preliz/predictive/predictive_explorer.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
from IPython.display import display
2-
31
try:
2+
from IPython.display import display
43
from ipywidgets import VBox, HBox, interactive_output
54
except ImportError:
65
pass

0 commit comments

Comments
 (0)