Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Maya 2025 uses PySide6 and shiboken6, so I had to try/except the imports to make it work across Maya versions.
I moved all Qt imports into widgets/widgets_utils.py and then imported that instead so this workaround only needs to happen in 1 place.
Additionally, because PySide6 moved a lot of things around between namespaces (QUndoStack to QtGui instead of QtWidgets for example), I opted to remove the namespace prefix everywhere.
The alternative would have been to identify every moved class and (in widgets_utils) reassign them to their old namespace in the PySide6 branch:
QtWidgets.QUndoStack = QtGui.QUndoStack
But that seemed like a never ending task, and since all of Qt's classes are prefixed with a capital Q I think it is guarded enough against naming conflicts.
Resolves #11