From f33ede55b51ae5659451373b604386cfd4ff6373 Mon Sep 17 00:00:00 2001 From: Abe Coull <85974725+math411@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:31:53 -0800 Subject: [PATCH] Update update_dependency.py --- .github/scripts/update_dependency.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/scripts/update_dependency.py b/.github/scripts/update_dependency.py index aaaf6f3c0..460496234 100644 --- a/.github/scripts/update_dependency.py +++ b/.github/scripts/update_dependency.py @@ -44,8 +44,6 @@ for line in fileinput.input("tox.ini", inplace=True): # Ensure that tox uses the working branch for the SDK PR. replaced_line = ( - line - if package not in line - else f" git+https://github.com/amazon-braket/{package}-python.git@{args.branch}\n" + line if package not in line else f'"{package} @ file://{path}/{package}-python",\n' ) print(replaced_line, end="")