From 55f5b0ee44a245db7fb83194806615bbe2f20158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Valyi?= Date: Wed, 17 Jan 2024 19:04:06 -0300 Subject: [PATCH] [MIG] spec_driven_model: Migration to 16.0 --- .pre-commit-config.yaml | 1 + oca_dependencies.txt | 1 + spec_driven_model/__manifest__.py | 2 +- test-requirements.txt | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 test-requirements.txt diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c6d084665ae3..056cfa62ff65 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,6 +2,7 @@ exclude: | (?x) # NOT INSTALLABLE ADDONS # END NOT INSTALLABLE ADDONS + ^spec_driven_model/tests/| # (tests include generated code) # Files and folders generated by bots, to avoid loops ^setup/|/static/description/index\.html$| # We don't want to mess with tool-generated files diff --git a/oca_dependencies.txt b/oca_dependencies.txt index f5a0a2fe4f3d..84725da2312c 100644 --- a/oca_dependencies.txt +++ b/oca_dependencies.txt @@ -1,3 +1,4 @@ web account-payment account-reconcile +odoo-test-helper diff --git a/spec_driven_model/__manifest__.py b/spec_driven_model/__manifest__.py index 1e1e1a8f8b91..9c2dc227132a 100644 --- a/spec_driven_model/__manifest__.py +++ b/spec_driven_model/__manifest__.py @@ -5,7 +5,7 @@ "name": "Spec Driven Model", "summary": """ Tools for specifications driven mixins (from xsd for instance)""", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "maintainers": ["rvalyi"], "license": "LGPL-3", "author": "Akretion,Odoo Community Association (OCA)", diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 000000000000..3382656b2b45 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1 @@ +odoo-test-helper # Needed by spec_driven_model