From b380ec54c6a42ec22b9531b3731cacfeda4a27bd Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Tue, 4 Jul 2023 14:34:43 +0300 Subject: [PATCH] Improve config file comments --- clearml_agent/backend_api/config/default/agent.conf | 4 ++++ docs/clearml.conf | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/clearml_agent/backend_api/config/default/agent.conf b/clearml_agent/backend_api/config/default/agent.conf index 82f5b88..e3de103 100644 --- a/clearml_agent/backend_api/config/default/agent.conf +++ b/clearml_agent/backend_api/config/default/agent.conf @@ -98,19 +98,23 @@ # force_repo_requirements_txt: false # set the priority packages to be installed before the rest of the required packages + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # priority_packages: ["cython", "numpy", "setuptools", ] # set the optional priority packages to be installed before the rest of the required packages, # In case a package installation fails, the package will be ignored, # and the virtual environment process will continue + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) priority_optional_packages: ["pygobject", ] # set the post packages to be installed after all the rest of the required packages + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # post_packages: ["horovod", ] # set the optional post packages to be installed after all the rest of the required packages, # In case a package installation fails, the package will be ignored, # and the virtual environment process will continue + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # post_optional_packages: [] # set to True to support torch nightly build installation, diff --git a/docs/clearml.conf b/docs/clearml.conf index 8dc3c42..54ab900 100644 --- a/docs/clearml.conf +++ b/docs/clearml.conf @@ -109,19 +109,23 @@ agent { # conda_env_as_base_docker: false # set the priority packages to be installed before the rest of the required packages + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # priority_packages: ["cython", "numpy", "setuptools", ] # set the optional priority packages to be installed before the rest of the required packages, # In case a package installation fails, the package will be ignored, # and the virtual environment process will continue + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # priority_optional_packages: ["pygobject", ] # set the post packages to be installed after all the rest of the required packages + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # post_packages: ["horovod", ] # set the optional post packages to be installed after all the rest of the required packages, # In case a package installation fails, the package will be ignored, # and the virtual environment process will continue + # Note: this only controls the installation order of existing requirement packages (and does not add additional packages) # post_optional_packages: [] # set to True to support torch nightly build installation,