Skip to content

[19.0][FIX] base_rest_pydantic: remove duplicate installable key#614

Open
fsmw wants to merge 1 commit into
OCA:19.0from
fsmw:19.0-fix-base_rest_pydantic-manifest-612
Open

[19.0][FIX] base_rest_pydantic: remove duplicate installable key#614
fsmw wants to merge 1 commit into
OCA:19.0from
fsmw:19.0-fix-base_rest_pydantic-manifest-612

Conversation

@fsmw
Copy link
Copy Markdown

@fsmw fsmw commented May 17, 2026

Issue: #612

Problem:
The __manifest__.py contained a duplicate installable key. One instance was incorrectly nested inside the external_dependencies dict, making the manifest invalid according to the standard Odoo schema.

Fix:

  • Removed the nested installable key from external_dependencies
  • Moved the remaining installable key to the root dict with proper double quotes
  • Bumped version from 18.0.1.0.2 to 18.0.1.0.3

Before:

"external_dependencies": {
    "python": [
        "pydantic>=2.0.0",
    ],
    "installable": False,
},
    "installable": False,
}

After:

"external_dependencies": {
    "python": [
        "pydantic>=2.0.0",
    ],
},
"installable": False,
}

Fixes #612

- Remove installable nested inside external_dependencies dict
- Ensure manifest conforms to standard Odoo schema
- Fixes OCA#612
@OCA-git-bot OCA-git-bot added series:19.0 mod:base_rest_pydantic Module base_rest_pydantic labels May 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

mod:base_rest_pydantic Module base_rest_pydantic series:19.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants