From c341aa5643d766db6886509f56cd3a74e61b8f91 Mon Sep 17 00:00:00 2001 From: ARYAN-NIKNEZHAD Date: Sat, 2 Nov 2024 15:11:56 +0330 Subject: [PATCH] fix(check): Update required apps and library check in settings validation Closes(#37) --- sage_invoice/check.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sage_invoice/check.py b/sage_invoice/check.py index c1dd8de..061e43d 100644 --- a/sage_invoice/check.py +++ b/sage_invoice/check.py @@ -8,6 +8,9 @@ def check_installed_apps(app_configs, **kwargs): errors = [] required_apps = [ + "django.contrib.humanize", + "django_jsonform", + "import_export", "sage_invoice", ] @@ -29,6 +32,8 @@ def check_installed_apps(app_configs, **kwargs): def check_required_libraries(app_configs, **kwargs): errors = [] required_libraries = [ + "django_jsonform", + "import_export", "sage_invoice", ]