Skip to content

Commit bb8fce9

Browse files
authored
chore: bump pyee to 9.0.4 (#1637)
1 parent 982c703 commit bb8fce9

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ requirements:
2424
run:
2525
- python
2626
- greenlet ==1.1.3
27-
- pyee ==8.1.0
27+
- pyee ==9.0.4
2828
- typing_extensions # [py<39]
2929
test:
3030
requires:

playwright/_impl/_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Union, cast
2222

2323
from greenlet import greenlet
24-
from pyee import AsyncIOEventEmitter, EventEmitter
24+
from pyee import EventEmitter
25+
from pyee.asyncio import AsyncIOEventEmitter
2526

2627
import playwright
2728
from playwright._impl._helper import ParsedMessagePayload, parse_error

playwright/_impl/_json_pipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import asyncio
1616
from typing import Dict, Optional, cast
1717

18-
from pyee import AsyncIOEventEmitter
18+
from pyee.asyncio import AsyncIOEventEmitter
1919

2020
from playwright._impl._api_types import Error
2121
from playwright._impl._connection import Channel

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def _download_and_extract_local_driver(
213213
include_package_data=True,
214214
install_requires=[
215215
"greenlet==1.1.3",
216-
"pyee==8.1.0",
216+
"pyee==9.0.4",
217217
"typing-extensions;python_version<='3.8'",
218218
],
219219
classifiers=[

0 commit comments

Comments
 (0)