|
@@ -93,11 +93,12 @@ def load_function_module_by_id(function_id):
|
|
|
os.rename(function_path, f"{function_path}.error")
|
|
|
raise e
|
|
|
|
|
|
+
|
|
|
def install_frontmatter_requirements(requirements):
|
|
|
if requirements:
|
|
|
- req_list = [req.strip() for req in requirements.split(',')]
|
|
|
+ req_list = [req.strip() for req in requirements.split(",")]
|
|
|
for req in req_list:
|
|
|
print(f"Installing requirement: {req}")
|
|
|
subprocess.check_call([sys.executable, "-m", "pip", "install", req])
|
|
|
else:
|
|
|
- print("No requirements found in frontmatter.")
|
|
|
+ print("No requirements found in frontmatter.")
|