Return the version tuple as a string, e.g. for (0, 10, 7), return '0.10.7'.
(version_tuple)
| 12 | |
| 13 | |
| 14 | def get_version(version_tuple): |
| 15 | """Return the version tuple as a string, e.g. for (0, 10, 7), |
| 16 | return '0.10.7'. |
| 17 | """ |
| 18 | return ".".join(map(str, version_tuple)) |
| 19 | |
| 20 | |
| 21 | # Dirty hack to get version number from monogengine/__init__.py - we can't |