Skip to content

Commit

Permalink
chore: bump pyee to 9.0.4 (#1637)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Nov 8, 2022
1 parent 982c703 commit bb8fce9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ requirements:
run:
- python
- greenlet ==1.1.3
- pyee ==8.1.0
- pyee ==9.0.4
- typing_extensions # [py<39]
test:
requires:
Expand Down
3 changes: 2 additions & 1 deletion playwright/_impl/_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Union, cast

from greenlet import greenlet
from pyee import AsyncIOEventEmitter, EventEmitter
from pyee import EventEmitter
from pyee.asyncio import AsyncIOEventEmitter

import playwright
from playwright._impl._helper import ParsedMessagePayload, parse_error
Expand Down
2 changes: 1 addition & 1 deletion playwright/_impl/_json_pipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import asyncio
from typing import Dict, Optional, cast

from pyee import AsyncIOEventEmitter
from pyee.asyncio import AsyncIOEventEmitter

from playwright._impl._api_types import Error
from playwright._impl._connection import Channel
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def _download_and_extract_local_driver(
include_package_data=True,
install_requires=[
"greenlet==1.1.3",
"pyee==8.1.0",
"pyee==9.0.4",
"typing-extensions;python_version<='3.8'",
],
classifiers=[
Expand Down

0 comments on commit bb8fce9

Please sign in to comment.