From 1a86fef16e381316e27ea814c6261a0f9354a3dc Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Tue, 15 Dec 2020 23:26:07 -0800 Subject: [PATCH] chore: roll Playwright to 1.7 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index feaf98376..7592e3e23 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ import setuptools from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand -driver_version = "0.170.0-next.1608058598043" +driver_version = "0.170.0" with open("README.md", "r", encoding="utf-8") as fh: @@ -44,7 +44,7 @@ def run(self) -> None: for platform in ["mac", "linux", "win32", "win32_x64"]: zip_file = f"playwright-cli-{driver_version}-{platform}.zip" if not os.path.exists("driver/" + zip_file): - url = "https://playwright.azureedge.net/builds/cli/next/" + zip_file + url = "https://playwright.azureedge.net/builds/cli/" + zip_file print("Fetching ", url) subprocess.check_call( ["curl", "--http1.1", url, "-o", "driver/" + zip_file]