Merge branch 'feat/python_reqs_directory' into 'master'

Tools: Make easier the detection of the list of Python features

See merge request espressif/esp-idf!17009
This commit is contained in:
Roland Dobai
2022-02-14 16:06:36 +00:00
12 changed files with 146 additions and 7 deletions

View File

@@ -1092,7 +1092,7 @@ def add_and_save_targets(targets_str): # type: (str) -> list[str]
def feature_to_requirements_path(feature): # type: (str) -> str
return os.path.join(global_idf_path or '', 'requirements.{}.txt'.format(feature))
return os.path.join(global_idf_path or '', 'tools', 'requirements', 'requirements.{}.txt'.format(feature))
def add_and_save_features(features_str): # type: (str) -> list[str]