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: sharoue/playwright-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: sharoue/playwright-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: release-1.18
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 20, 2022

  1. Copy the full SHA
    767ee97 View commit details

Commits on Jan 26, 2022

  1. Copy the full SHA
    a38cc13 View commit details

Commits on Feb 1, 2022

  1. Copy the full SHA
    480fe16 View commit details
Showing with 7 additions and 7 deletions.
  1. +3 −3 meta.yaml
  2. +4 −4 setup.py
6 changes: 3 additions & 3 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -23,9 +23,9 @@ requirements:
- setuptools_scm
run:
- python
- greenlet >=0.4
- pyee >=8.0.1
- websockets >=8.1
- greenlet ==1.1.2
- pyee ==8.1.0
- websockets ==10.1
- typing_extensions # [py<39]
test:
requires:
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@
InWheel = None
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand

driver_version = "1.18.0-beta-1642508722000"
driver_version = "1.18.1-beta-1643727981000"


def extractall(zip: zipfile.ZipFile, path: str) -> None:
@@ -208,9 +208,9 @@ def _download_and_extract_local_driver(
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
install_requires=[
"websockets>=8.1",
"greenlet>=1.0.0",
"pyee>=8.0.1",
"websockets==10.1",
"greenlet==1.1.2",
"pyee==8.1.0",
"typing-extensions;python_version<='3.8'",
],
classifiers=[