Skip to content

Commit

Permalink
Merge pull request #1769 from willend/main
Browse files Browse the repository at this point in the history
Potential fix for #1768
  • Loading branch information
willend authored Nov 21, 2024
2 parents 89f3eb7 + 2598b78 commit e3f40d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion meta-pkgs/windows/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies:
- msmpi
- pyaml
- ply
- matplotlib
- numpy
- tornado
- scipy
Expand Down
6 changes: 5 additions & 1 deletion tools/Python/mccodelib/pqtgfrontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ def __init__(self, plotgraph, sourcedir, plot_func, invcanvas):

# start
if hasattr(self.app, "exec_"):
self.isQt6 = False
try:
import PySide6
self.isQt6 = True
except:
self.isQt6 = False
else:
self.isQt6 = True

Expand Down

0 comments on commit e3f40d0

Please sign in to comment.