YannGenty / yg_weightTool

yg_weightTool, small tool with several useful utilities for working with maya deformers
MIT License
2 stars 1 forks source link

Maya 2025: pyside2 is not compatible #2

Closed adrienparis closed 5 days ago

adrienparis commented 5 days ago

Hello dear Yann,

I would like to inform you that PySide2 is no longer supported in Maya 2025.

To ensure compatibility, I recommend adding the following lines to your code:

try:
    from PySide2.QtGui import QCursor
except:
    from PySide6.QtGui import QCursor

This adjustment will allow your code to work seamlessly with both PySide2 and PySide6.

Best regards,

YannGenty commented 5 days ago

Hi Adrien,

Thanks a lot for the feedback, I'll change it as soon as possible.

cya !