From 3c4e976093927ce9b1fc0c14a91c13b71d855e18 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Wed, 19 May 2021 15:20:44 +0300 Subject: [PATCH] Add agent.ignore_requested_python_version to config file --- clearml_agent/backend_api/config/default/agent.conf | 3 +++ docs/clearml.conf | 3 +++ 2 files changed, 6 insertions(+) diff --git a/clearml_agent/backend_api/config/default/agent.conf b/clearml_agent/backend_api/config/default/agent.conf index de82bf3..a66d675 100644 --- a/clearml_agent/backend_api/config/default/agent.conf +++ b/clearml_agent/backend_api/config/default/agent.conf @@ -26,6 +26,9 @@ # Example values: "/usr/bin/python3" or "/usr/local/bin/python3.6" # The default is the python executing the clearml_agent python_binary: "" + # ignore any requested python version (Default: False, if a Task was using a + # specific python version and the system supports multiple python the agent will use the requested python version) + # ignore_requested_python_version: true # select python package manager: # currently supported pip and conda diff --git a/docs/clearml.conf b/docs/clearml.conf index 859333f..05e0922 100644 --- a/docs/clearml.conf +++ b/docs/clearml.conf @@ -42,6 +42,9 @@ agent { # Example values: "/usr/bin/python3" or "/usr/local/bin/python3.6" # The default is the python executing the clearml_agent python_binary: "" + # ignore any requested python version (Default: False, if a Task was using a + # specific python version and the system supports multiple python the agent will use the requested python version) + # ignore_requested_python_version: true # select python package manager: # currently supported pip and conda