Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: Stream visualization doesn't work under MacOS #1005 #1009

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/mlpro/bf/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@
## -- value 500
## -- - new parameter data_horizon with default value 1000
## -- 2024-05-22 2.13.0 DA New method PlotSettings.copy()
## -- 2024-06-04 2.13.1 DA/SK Turned on TKAgg for Mac
## -------------------------------------------------------------------------------------------------

"""
Ver. 2.13.0 (2024-05-22)
Ver. 2.13.1 (2024-06-04)

This module provides various classes related to data plotting.

Expand All @@ -59,8 +60,8 @@
from tkinter import *
import matplotlib
# Due to bug in TKinter for macos, disabled for macos https://bugs.python.org/issue46573
if platform != 'darwin':
matplotlib.use('TkAgg')
#if platform != 'darwin':
matplotlib.use('TkAgg')
except:
print('Please install tkinter for a better plot experience')
import matplotlib
Expand Down
Loading