diff --git a/frappe/patches.txt b/frappe/patches.txt index 7142e04d64..86d33380de 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -245,3 +245,4 @@ frappe.patches.v16_0.move_role_desk_settings_to_user frappe.printing.doctype.print_format.patches.sets_wkhtmltopdf_as_default_for_pdf_generator_field frappe.patches.v14_0.fix_user_settings_collation execute:frappe.core.doctype.system_settings.system_settings.sync_system_settings +frappe.patches.v16_0.social_eps_deprecation_warning diff --git a/frappe/patches/v16_0/social_eps_deprecation_warning.py b/frappe/patches/v16_0/social_eps_deprecation_warning.py new file mode 100644 index 0000000000..e412e5969f --- /dev/null +++ b/frappe/patches/v16_0/social_eps_deprecation_warning.py @@ -0,0 +1,9 @@ +import click + + +def execute(): + click.secho( + "Social Module/Energy Points System is moving to a new app and will removed from the framework in version-16.\n" + "Please install the app to continue using the integration: https://github.com/frappe/eps", + fg="yellow", + )