mirror of
https://github.com/daniviga/django-ram.git
synced 2026-02-03 17:40:39 +01:00
14 lines
332 B
Python
14 lines
332 B
Python
from django import VERSION as DJANGO_VERSION
|
|
from django.utils.termcolors import colorize
|
|
from ram.utils import git_suffix
|
|
|
|
if DJANGO_VERSION < (6, 0):
|
|
exit(
|
|
colorize(
|
|
"ERROR: This project requires Django 6.0 or higher.", fg="red"
|
|
)
|
|
)
|
|
|
|
__version__ = "0.19.10"
|
|
__version__ += git_suffix(__file__)
|