mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 00:49:16 +02:00
8 lines
193 B
Python
8 lines
193 B
Python
# -*- coding: utf-8 -*-
|
|
__version__ = "0.19.1"
|
|
__version_info__ = tuple(
|
|
[
|
|
int(num) if num.isdigit() else num
|
|
for num in __version__.replace("-", ".", 1).split(".")
|
|
]
|
|
)
|