Skip to content

Commit

Permalink
[FIX] Remove useless check on Odoo version in config file
Browse files Browse the repository at this point in the history
  • Loading branch information
qgroulard committed Oct 4, 2022
1 parent cdf6c9d commit f628212
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions acsoo/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f628212

Please sign in to comment.