From f6282125a3e29abe233cb76f6f4b667aa95933cf Mon Sep 17 00:00:00 2001 From: Quentin Groulard Date: Tue, 4 Oct 2022 12:15:16 +0200 Subject: [PATCH] [FIX] Remove useless check on Odoo version in config file --- acsoo/config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/acsoo/config.py b/acsoo/config.py index af8893e..3fadf39 100644 --- a/acsoo/config.py +++ b/acsoo/config.py @@ -57,10 +57,6 @@ def series(self): raise click.ClickException( "Odoo series not found in pyproject.toml and {}.".format(self.__cfgfile) ) - if r not in ("14.0", "15.0", "16.0"): - raise click.ClickException( - "Unsupported series {} in {}.".format(r, self.__cfgfile) - ) return r @property