Skip to content

Commit 24dae5f

Browse files
authored
chore: roll driver to 1.17.0-rc1 (#1037)
1 parent e5123b2 commit 24dae5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
InWheel = None
2929
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand
3030

31-
driver_version = "1.17.0-1637005716000"
31+
driver_version = "1.17.0-rc1"
3232

3333

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

0 commit comments

Comments
 (0)