LumaPictures / pymel

Python in Maya Done Right
Other
478 stars 130 forks source link

Adding support for Maya 2025 #475

Open iamsleepy opened 2 months ago

iamsleepy commented 2 months ago

Adding support for Maya 2025.

No building steps from 7 to 9(except for building a wheel).

iamsleepy commented 1 month ago

@chadrik I've added you as a collaborator.

chadrik commented 4 weeks ago

I updated the changelog and addressed a few small issues. I think this is ready to merge, but I had a quick question about maya.cmds.matrix. This generated pymel code indicates that this function may have been removed. Do you have a chance to double check this? Sorry, I don't have a copy of Maya 2025 to test with.

iamsleepy commented 4 weeks ago

It seems have been removed in Maya 2025.

import maya.cmds as cmds
cmds.matrix
# Error: AttributeError: file <maya console> line 3: module 'maya.cmds' has no attribute 'matrix'

Compare to Maya 2024

import maya.cmds as cmds

cmds.matrix