We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ffc4b commit a4ec658Copy full SHA for a4ec658
setup.py
@@ -23,7 +23,8 @@
23
import setuptools
24
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand
25
26
-driver_version = "1.9.0-1614037901000"
+driver_version = "1.9.1-1614225150000"
27
+
28
29
with open("README.md", "r", encoding="utf-8") as fh:
30
long_description = fh.read()
@@ -54,8 +55,7 @@ def run(self) -> None:
54
55
for platform in ["mac", "linux", "win32", "win32_x64"]:
56
zip_file = f"playwright-{driver_version}-{platform}.zip"
57
if not os.path.exists("driver/" + zip_file):
- url = "https://playwright.azureedge.net/builds/driver/"
58
- url = url + "next/"
+ url = "https://playwright.azureedge.net/builds/driver/next/"
59
url = url + zip_file
60
print("Fetching ", url)
61
subprocess.check_call(
0 commit comments