Skip to content

Commit 9162065

Browse files
author
Julian Blank
committed
VERSION 0.4.2
1 parent b0f438f commit 9162065

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pymoo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.2.rc2"
1+
__version__ = "0.4.2"

pymoo/visualization/video/callback_video.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ def __init__(self,
2727
from pyrecorder.video import Video
2828
from pyrecorder.converters.matplotlib import Matplotlib
2929
except:
30-
print("Please install pyrecorder for animation support: pip install pyrecorder")
30+
raise Exception("Please install pyrecorder for animation support: pip install pyrecorder")
31+
3132
self.video = Video(File(fname), converter=Matplotlib(dpi=dpi))
3233

3334
def notify(self, algorithm, **kwargs):

0 commit comments

Comments
 (0)