lino 25.3.3__py3-none-any.whl → 25.3.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lino/__init__.py +1 -1
- lino/locale/bn/LC_MESSAGES/django.po +1112 -907
- lino/locale/de/LC_MESSAGES/django.mo +0 -0
- lino/locale/de/LC_MESSAGES/django.po +1066 -918
- lino/locale/django.pot +1041 -900
- lino/locale/es/LC_MESSAGES/django.po +1103 -902
- lino/locale/et/LC_MESSAGES/django.po +1103 -915
- lino/locale/fr/LC_MESSAGES/django.po +1105 -916
- lino/locale/nl/LC_MESSAGES/django.po +1102 -917
- lino/locale/pt_BR/LC_MESSAGES/django.po +1099 -900
- lino/locale/zh_Hant/LC_MESSAGES/django.po +1099 -900
- lino/management/commands/buildcache.py +48 -3
- lino/management/commands/prep.py +1 -1
- lino/mixins/duplicable.py +1 -1
- lino/modlib/checkdata/models.py +33 -15
- lino/modlib/comments/fixtures/demo2.py +1 -9
- lino/modlib/extjs/views.py +1 -1
- lino/modlib/users/ui.py +4 -2
- lino/modlib/weasyprint/__init__.py +12 -20
- lino/modlib/weasyprint/config/weasyprint/base.weasy.html +10 -1
- {lino-25.3.3.dist-info → lino-25.3.4.dist-info}/METADATA +1 -1
- {lino-25.3.3.dist-info → lino-25.3.4.dist-info}/RECORD +25 -26
- lino/management/commands/buildsite.py +0 -67
- {lino-25.3.3.dist-info → lino-25.3.4.dist-info}/WHEEL +0 -0
- {lino-25.3.3.dist-info → lino-25.3.4.dist-info}/licenses/AUTHORS.rst +0 -0
- {lino-25.3.3.dist-info → lino-25.3.4.dist-info}/licenses/COPYING +0 -0
lino/__init__.py
CHANGED
@@ -31,7 +31,7 @@ from django import VERSION
|
|
31
31
|
from django.apps import AppConfig
|
32
32
|
from django.conf import settings
|
33
33
|
import warnings
|
34
|
-
__version__ = '25.3.
|
34
|
+
__version__ = '25.3.4'
|
35
35
|
|
36
36
|
# import setuptools # avoid UserWarning "Distutils was imported before Setuptools"?
|
37
37
|
|