I don't manage to find a way to modify the font in the About section in PyQt5 :
I would like Version 0.0 not being in bold.
Here is the code I used :
about_box = QMessageBox()
about_box.about(self.parent(), "About", "Appli\nVersion 0.0")
Apparently, it's just possible to enter a mere string in the About.
Someone knows how to pull this off ?

