Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump pyee to 9.0.4 #1637

Merged
merged 1 commit into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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