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