We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5123b2 commit 24dae5fCopy full SHA for 24dae5f
setup.py
@@ -28,7 +28,7 @@
28
InWheel = None
29
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand
30
31
-driver_version = "1.17.0-1637005716000"
+driver_version = "1.17.0-rc1"
32
33
34
def extractall(zip: zipfile.ZipFile, path: str) -> None:
@@ -112,7 +112,7 @@ def run(self) -> None:
112
for arch in platform:
113
zip_file = f"playwright-{driver_version}-{arch['zip_name']}.zip"
114
if not os.path.exists("driver/" + zip_file):
115
- url = f"https://playwright.azureedge.net/builds/driver/next/{zip_file}"
+ url = f"https://playwright.azureedge.net/builds/driver/{zip_file}"
116
print(f"Fetching {url}")
117
# Don't replace this with urllib - Python won't have certificates to do SSL on all platforms.
118
subprocess.check_call(["curl", url, "-o", "driver/" + zip_file])
0 commit comments