-
Notifications
You must be signed in to change notification settings - Fork 960
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
Draft: Upgrade to pyee>=9.0.0 #1587
Draft: Upgrade to pyee>=9.0.0 #1587
Conversation
@microsoft-github-policy-service agree [company="default"] |
@microsoft-github-policy-service agree |
I see a couple of |
@@ -24,7 +24,7 @@ requirements: | |||
run: | |||
- python | |||
- greenlet ==1.1.3 | |||
- pyee ==8.1.0 | |||
- pyee >=9.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- pyee >=9.0.0 | |
- pyee ==9.0.4 |
let's keep that? In the past they broke us with a minor version bump.
@@ -212,7 +212,7 @@ def _download_and_extract_local_driver( | |||
include_package_data=True, | |||
install_requires=[ | |||
"greenlet==1.1.3", | |||
"pyee==8.1.0", | |||
"pyee>=9.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
Python playwright uses an old-ish version of
pyee
(8.1.0) - this PR upgrades to >=9.0.0. There was a previous attempt here but was never merged because of pyee >=9.0.0 was not available in conda at that time. This is no longer the case:No regression between main and this branch.
Thanks for taking a look 🙏