funkwhale/api/funkwhale_api/__init__.py

9 wiersze
191 B
Python
Czysty Zwykły widok Historia

# -*- coding: utf-8 -*-
2020-04-24 08:10:45 +00:00
__version__ = "0.21"
2018-06-09 13:36:16 +00:00
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
for num in __version__.replace("-", ".", 1).split(".")
]
)