From e9ccd82fd94bfbb1c82abbcdffe39fca23c62121 Mon Sep 17 00:00:00 2001 From: vdahiya12 <67608553+vdahiya12@users.noreply.github.com> Date: Tue, 14 Dec 2021 16:31:17 -0800 Subject: [PATCH] [sonic-platform-daemons] fix dependency issue on py2 wheels by correcting the path (#234) Signed-off-by: vaibhav-dahiya vdahiya@microsoft.com Description During a recent cleanup of py2 wheels the path where dependent wheels are installed has changed. This PR corrects that issue and gathers the dependency wheels from right path. Motivation and Context To make sonic-platform-daemons build pass How Has This Been Tested? pipelines need to pass --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 77dc1281f92f..086e62daf74f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -114,7 +114,7 @@ jobs: sudo pip3 install sonic_yang_models-1.0-py3-none-any.whl sudo pip3 install sonic_config_engine-1.0-py3-none-any.whl sudo pip3 install sonic_platform_common-1.0-py3-none-any.whl - workingDirectory: $(Pipeline.Workspace)/target/python-wheels/ + workingDirectory: $(Pipeline.Workspace)/target/python-wheels/buster/ displayName: 'Install Python dependencies' - script: |