Skip to content

Commit 98b9174

Browse files
committed
cleanup
1 parent 5978ab0 commit 98b9174

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ Changelog
1919
Thanks to `@brownbaerchen <https://github.com/brownbaerchen>`_ and `@lisawim <https://github.com/lisawim>`_!
2020
- **Toward GPU computing**: We included a new data type based on `CuPy <https://cupy.dev/>`_ making GPU computing possible.
2121
Thanks to `@timo2705 <https://github.com/timo2705>`_!
22-
- **Better testing**: The CI pipeline got a complete overhaul (again), now enabling simultaneous tests, faster/earlier linting, benchmarking, separate environments and so on.
23-
Tests and benchmarks are now done on the `HIFIS Gitlab CI <https://gitlab.hzdr.de/r.speck/pysdc/-/pipelines>`_, so that custom gitlab runners are now possible.
22+
- **Better testing**: The CI pipeline got a complete overhaul (again), now enabling simultaneous tests, faster/earlier linting, benchmarking (at least, in principal), separate environments and so on.
2423
- **Better code formatting**: `pySDC` now uses `black <https://black.readthedocs.io>`_ and `flakeheaven <https://flakeheaven.readthedocs.io>`_ for cleaner source code.
2524
After complaints here and there about linting "errors" the recommended way now is to run ``black`` before submission.
2625

pySDC/core/Controller.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ def __setup_custom_logger(level=None, log_to_file=None, fname=None):
103103
def welcome_message(self):
104104
out = (
105105
'Welcome to the one and only, really very astonishing and 87.3% bug free'
106-
+ '\n _____ _____ _____ '
107-
+ '\n / ____| __ \ / ____|'
108-
+ '\n _ __ _ _| (___ | | | | | '
109-
+ '\n | \'_ \| | | |\___ \| | | | | '
110-
+ '\n | |_) | |_| |____) | |__| | |____ '
111-
+ '\n | .__/ \__, |_____/|_____/ \_____|'
112-
+ '\n | | __/ | '
113-
+ '\n |_| |___/ '
114-
+ '\n '
106+
+ r'\n _____ _____ _____ '
107+
+ r'\n / ____| __ \ / ____|'
108+
+ r'\n _ __ _ _| (___ | | | | | '
109+
+ r'\n | \'_ \| | | |\___ \| | | | | '
110+
+ r'\n | |_) | |_| |____) | |__| | |____ '
111+
+ r'\n | .__/ \__, |_____/|_____/ \_____|'
112+
+ r'\n | | __/ | '
113+
+ r'\n |_| |___/ '
114+
+ r'\n '
115115
)
116116
self.logger.info(out)
117117

0 commit comments

Comments
 (0)