Hey everyone,
a few days ago I updated Python from 3.9 to 3.11.
In 3.9 I created a defaults script for updating the rcParams. One of these
updates is, to change the decimal sign from " . " to " , ". If I run this
script in 3.11, the numerical values get the comma, but it is placed in
curly brackets (see the attached picture).
In my script I change this setting by
import locale as lc
lc.setlocale(lc.LC_ALL, 'de_DE')
import matplotlib.pyplot as plt
plt.rcParams.update({'axes.formatter.use_locale': True})
On first research I only find this way to achieve these changes.
Has anyone an idea what causes this bug or has an idea how to fix this?
Thanks a lot and best regards
Hendrik