Skip to content

Commit

Permalink
chore: roll Playwright to 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed Dec 16, 2020
1 parent 345dc10 commit 1a86fef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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]
Expand Down

0 comments on commit 1a86fef

Please sign in to comment.