How to tell which PyMEL version?

Hi all,

Wondering if anyone here knows how to determine which version of PyMEL is being used in a Maya session? There is a pymel.version module, but it seems to only relate to getting info about the version of Maya itself.

Thanks!

Should be as simple as:

import pymel
print(pymel.__version__)
1 Like

Can’t believe I didn’t think to try that! Thanks!