diff --git a/quantecon/__init__.py b/quantecon/__init__.py index b61867e7..42833069 100644 --- a/quantecon/__init__.py +++ b/quantecon/__init__.py @@ -5,6 +5,12 @@ __version__ = '0.7.2' +# Silent the upstream(openmp via numba) warnings +# The following flag is used to silent the warning. +# For more details see: https://github.com/QuantEcon/QuantEcon.py/issues/627 +import os +os.environ['KMP_WARNINGS'] = 'off' + try: import numba except: