Bump clearml required version to v1.1.5

This commit is contained in:
allegroai 2022-01-01 23:18:19 +02:00
parent 5ab6995fb4
commit 5edc1a8edf
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ def create_base_task(state, project_name=None, task_name=None):
task_script['working_dir'] = '.'
task_script['entry_point'] = 'interactive_session.py'
task_script['requirements'] = {'pip': '\n'.join(
["clearml>=1.1.5rc6"] + (["jupyter", "jupyterlab", "jupyterlab_git"] if state.get('jupyter_lab') else []) +
["clearml>=1.1.5"] + (["jupyter", "jupyterlab", "jupyterlab_git"] if state.get('jupyter_lab') else []) +
(['pylint'] if state.get('vscode_server') else []))}
section, _, _ = _get_config_section_name()

View File

@ -1,3 +1,3 @@
clearml >= 1.1.5rc4
clearml >= 1.1.5
pexpect ; sys_platform != 'win32'
wexpect ; sys_platform == 'win32'