From e0c7ad5c34504769205bf3a695ac86cc77349e90 Mon Sep 17 00:00:00 2001 From: Fernando Date: Sat, 16 May 2026 22:05:49 -0400 Subject: [PATCH] [FIX] base_rest_pydantic: remove duplicate installable key - Remove installable nested inside external_dependencies dict - Ensure manifest conforms to standard Odoo schema - Fixes #612 --- base_rest_pydantic/__manifest__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/base_rest_pydantic/__manifest__.py b/base_rest_pydantic/__manifest__.py index 7337466f5..35ac702a1 100644 --- a/base_rest_pydantic/__manifest__.py +++ b/base_rest_pydantic/__manifest__.py @@ -5,7 +5,7 @@ "name": "Base Rest Datamodel", "summary": """ Pydantic binding for base_rest""", - "version": "18.0.1.0.2", + "version": "18.0.1.0.3", "license": "LGPL-3", "author": "ACSONE SA/NV,Odoo Community Association (OCA)", "website": "https://github.com/OCA/rest-framework", @@ -14,7 +14,6 @@ "python": [ "pydantic>=2.0.0", ], - 'installable': False, -}, - 'installable': False, + }, + "installable": False, }