diff --git a/meta.yaml b/meta.yaml index cb2da8460..f9fc9d5ba 100644 --- a/meta.yaml +++ b/meta.yaml @@ -27,7 +27,7 @@ requirements: run: - python >=3.9 - greenlet ==3.1.1 - - pyee ==12.0.0 + - pyee ==12.1.1 test: # [build_platform == target_platform] requires: diff --git a/playwright/_impl/_artifact.py b/playwright/_impl/_artifact.py index d619c35e2..a5af44573 100644 --- a/playwright/_impl/_artifact.py +++ b/playwright/_impl/_artifact.py @@ -55,5 +55,5 @@ async def read_info_buffer(self) -> bytes: buffer = await stream.read_all() return buffer - async def cancel(self) -> None: + async def cancel(self) -> None: # pyright: ignore[reportIncompatibleMethodOverride] await self._channel.send("cancel") diff --git a/pyproject.toml b/pyproject.toml index f250731fc..963a75a41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dynamic = ["version"] requires-python = ">=3.9" dependencies = [ "greenlet==3.1.1", - "pyee==12.0.0", + "pyee==12.1.1", ] classifiers = [ "Topic :: Software Development :: Testing",