Skip to content

Commit

Permalink
chore: print Qt version with acdc -v command
Browse files Browse the repository at this point in the history
  • Loading branch information
ElpadoCan committed Feb 14, 2025
1 parent 5578caf commit 95c7304
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cellacdc/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ def run():
print(f'Installed in "{cellacdc_path}"')
print(f'Python {python_version}')
print(f'Platform: {platform.platform()}')
try:
from qtpy import QtCore
print(f'Qt {QtCore.__version__}')
except Exception as err:
print(f'Qt: Not installed')
print('='*100)
exit()

Expand Down

0 comments on commit 95c7304

Please sign in to comment.