Skip to content

Commit

Permalink
chore: roll driver to 1.17.0-rc1 (#1037)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov authored Nov 18, 2021
1 parent e5123b2 commit 24dae5f
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 @@ -28,7 +28,7 @@
InWheel = None
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand

driver_version = "1.17.0-1637005716000"
driver_version = "1.17.0-rc1"


def extractall(zip: zipfile.ZipFile, path: str) -> None:
Expand Down Expand Up @@ -112,7 +112,7 @@ def run(self) -> None:
for arch in platform:
zip_file = f"playwright-{driver_version}-{arch['zip_name']}.zip"
if not os.path.exists("driver/" + zip_file):
url = f"https://playwright.azureedge.net/builds/driver/next/{zip_file}"
url = f"https://playwright.azureedge.net/builds/driver/{zip_file}"
print(f"Fetching {url}")
# Don't replace this with urllib - Python won't have certificates to do SSL on all platforms.
subprocess.check_call(["curl", url, "-o", "driver/" + zip_file])
Expand Down

0 comments on commit 24dae5f

Please sign in to comment.