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:
2
tasks.py
2
tasks.py
@ -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!')
|
||||
|
Reference in New Issue
Block a user