11 lines
267 B
Python
11 lines
267 B
Python
# extract icons from dll on windows
|
|
# https://mail.python.org/pipermail/python-win32/2009-April/009078.html
|
|
|
|
import PySide6.QtCore
|
|
|
|
# Prints PySide6 version
|
|
print(PySide6.__version__)
|
|
|
|
# Prints the Qt version used to compile PySide6
|
|
print(PySide6.QtCore.__version__)
|