1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2025-04-28 23:50:59 +00:00

Use dynamic version

This commit is contained in:
Tobias Kunze 2024-08-09 11:04:00 +02:00
parent 2e2efbff9d
commit d54087b7d0
3 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1 @@
__version__ = "2.2.0"

View file

@ -1,5 +1,6 @@
from django.apps import AppConfig
from django.utils.translation import gettext_lazy
from pretalx_broadcast_tools import __version__
class PluginApp(AppConfig):
@ -15,7 +16,7 @@ class PluginApp(AppConfig):
"embedded into your broadcasting software"
)
visible = True
version = "2.2.0"
version = __version__
category = "FEATURE"
def ready(self):