Skip to content

Commit 60e6e26

Browse files
authored
Merge pull request #165 from brownbaerchen/welcome_message
Added a welcome message, but it's kind of stupid. Please suggest something more reasonable
2 parents 61d29d5 + 1bb7096 commit 60e6e26

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

pySDC/core/Controller.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,18 @@ def __setup_custom_logger(level=None, log_to_file=None, fname=None):
9999
else:
100100
pass
101101

102+
def welcome_message(self):
103+
out = 'Welcome to the one and only, really very astonishing and 87.3% bug free' + \
104+
'\n _____ _____ _____ ' + \
105+
'\n / ____| __ \ / ____|' + \
106+
'\n _ __ _ _| (___ | | | | | ' + \
107+
'\n | \'_ \| | | |\___ \| | | | | ' + \
108+
'\n | |_) | |_| |____) | |__| | |____ ' + \
109+
'\n | .__/ \__, |_____/|_____/ \_____|' + \
110+
'\n | | __/ | ' + \
111+
'\n |_| |___/ '
112+
self.logger.info(out)
113+
102114
def dump_setup(self, step, controller_params, description):
103115
"""
104116
Helper function to dump the setup used for this controller
@@ -109,6 +121,7 @@ def dump_setup(self, step, controller_params, description):
109121
description (dict): description of the problem
110122
"""
111123

124+
self.welcome_message()
112125
out = 'Setup overview (--> user-defined) -- BEGIN'
113126
self.logger.info(out)
114127
out = '----------------------------------------------------------------------------------------------------\n\n'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ numpy>=1.15.4
33
scipy>=0.17.1
44
dill>=0.2.6
55
# These packages are used in examples or for testing, they can be omitted if necessary
6-
matplotlib>=3.0
6+
matplotlib>=3.0,<=3.5.3
77
numba>=0.35
88
sympy>=1.0
99
# These packages are required for some of the more involved examples (and data types etc.), can be omitted

0 commit comments

Comments
 (0)