2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

Update docker build workflow (#8971)

* Update docker build workflow

- Use depot action
- Much faster builds

* Remove # noqa strings
This commit is contained in:
Oliver
2025-01-28 19:05:49 +11:00
committed by GitHub
parent c89fe44fea
commit 918adfb67f
2 changed files with 5 additions and 2 deletions

View File

@ -45,7 +45,7 @@ def checkInvokeVersion():
MIN_INVOKE_VERSION = '2.0.0'
min_version = tuple(map(int, MIN_INVOKE_VERSION.split('.')))
invoke_version = tuple(map(int, invoke.__version__.split('.'))) # noqa: RUF048
invoke_version = tuple(map(int, invoke.__version__.split('.')))
if invoke_version < min_version:
error(f'The installed invoke version ({invoke.__version__}) is not supported!')