Files
pymol-open-source/layer0/Version.h
2025-02-02 12:28:59 -05:00

14 lines
367 B
C

#ifndef _PyMOL_VERSION
#define _PyMOL_VERSION "3.2.0a"
#endif
/* for session file compatibility */
#ifndef _PyMOL_VERSION_int
// X.Y.Z -> XYYYZZZ
#define _PyMOL_VERSION_int 3000000
// Note: There should have never been a "double" version, it's
// the least useful variant to specify a version.
#define _PyMOL_VERSION_double (_PyMOL_VERSION_int / 1000000.)
#endif