Files
snikket-web-portal/snikket_web/_version.py
Jonas Schäfer 7dde3a1128 Bump version number manually for hopefully the last time
(As the master branch now uses automatic version detection.)
2021-06-20 14:12:55 +02:00

6 lines
143 B
Python

version_info = (0, 2, 2, None)
version = (
".".join(map(str, version_info[:3])) +
(f"-{version_info[3]}" if version_info[3] else "")
)