Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: donway19/playwright-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: donway19/playwright-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: release-0.170
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 16, 2020

  1. Copy the full SHA
    1a86fef View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 setup.py
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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:
@@ -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]