Skip to content

Commit 4c71f28

Browse files
committed
Se agrega opción para que lea dependencias ya descomprimidas
1 parent aeef7a3 commit 4c71f28

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

fabricator/recipes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ def install_deps(c: Connection | DockerRunner | Context, config: dict) -> None:
236236
logger.info("Installing Python dependencies...")
237237
c.run(
238238
f"bash -c 'source {venv_dir}/bin/activate && "
239-
f"cd {deploy_path} && pip install -r requirements.txt'",
239+
f"cd {deploy_path} && "
240+
f"pip install --prefer-binary -r requirements.txt'",
240241
pty=True
241242
)
242243

0 commit comments

Comments
 (0)