Skip to content

Commit

Permalink
Merge pull request #108 from LucidtechAI/stine/update_preprocess_version
Browse files Browse the repository at this point in the history
Updated default preprocess docker image
  • Loading branch information
stinebuu authored Dec 5, 2023
2 parents 2705b22 + 7739eca commit 9fc8f4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 12.4.0 - 2023-12-05

- Updated default `--preprocess-image` in `create-default` workflow

## Version 12.3.0 - 2023-11-20

- Added optional parameter `--email-config` to `workflows create`
Expand Down
2 changes: 1 addition & 1 deletion lascli/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
__maintainer_email__ = 'magnus@lucidtech.ai'
__title__ = 'lucidtech-las-cli'
__url__ = 'https://github.com/LucidtechAI/las-cli'
__version__ = '12.3.0'
__version__ = '12.4.0'
2 changes: 1 addition & 1 deletion lascli/parser/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def create_workflows_parser(subparsers):
create_default_action = create_default_workflow_parser.add_mutually_exclusive_group(required=False)
create_default_action.add_argument('--from-model-id', help='The model to generate the workflow for')
create_default_workflow_parser.add_argument('name', help='Name of the workflow')
create_default_workflow_parser.add_argument('--preprocess-image', default='lucidtechai/preprocess:v2.1.0', help='Docker image for the preprocessor')
create_default_workflow_parser.add_argument('--preprocess-image', default='lucidtechai/preprocess:v2.3.0', help='Docker image for the preprocessor')
create_default_workflow_parser.add_argument('--postprocess-image', default='lucidtechai/postprocess:v2.2.0', help='Docker image for the postprocessor')
create_default_workflow_parser.set_defaults(cmd=workflows.create_default_workflow)

Expand Down

0 comments on commit 9fc8f4f

Please sign in to comment.