From 41a778c57fb1517087da1c4bbc78134458fb45e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Sat, 25 Feb 2023 10:15:05 -0300 Subject: [PATCH] Instalando o PySide6 no seu ambiente virtual --- aula201/aula0001.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aula201/aula0001.py b/aula201/aula0001.py index b805b1a..7211247 100644 --- a/aula201/aula0001.py +++ b/aula201/aula0001.py @@ -24,3 +24,10 @@ # Licenças são tópicos complexos, portanto, se oriente sobre elas # antes de usar qualquer software de terceiros. # https://tldrlegal.com/license/gnu-lesser-general-public-license-v3-(lgpl-3) +import PySide6.QtCore + +# Prints PySide6 version +print(PySide6.__version__) # type: ignore + +# Prints the Qt version used to compile PySide6 +print(PySide6.QtCore.__version__) # type: ignore