mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 11:09:17 +02:00
8 lines
195 B
Python
8 lines
195 B
Python
# -*- coding: utf-8 -*-
|
|
__version__ = "0.21-rc2"
|
|
__version_info__ = tuple(
|
|
[
|
|
int(num) if num.isdigit() else num
|
|
for num in __version__.replace("-", ".", 1).split(".")
|
|
]
|
|
)
|