Return the VERSION as a string. For example, if `VERSION == (0, 10, 7)`, return '0.10.7'.
()
| 33 | |
| 34 | |
| 35 | def get_version(): |
| 36 | """Return the VERSION as a string. |
| 37 | |
| 38 | For example, if `VERSION == (0, 10, 7)`, return '0.10.7'. |
| 39 | """ |
| 40 | return ".".join(map(str, VERSION)) |
| 41 | |
| 42 | |
| 43 | __version__ = get_version() |