This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-5-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 6180b2d01c2a20c2ae38fbe424862b86d1ce7dd0 Author: Ash Berlin-Taylor <[email protected]> AuthorDate: Thu Jan 12 21:48:14 2023 +0000 Fix pyzmq warning stopping provider package tests (#28901) (cherry picked from commit a1f23fea12b5e49c5fc86a1402758da5111e9383) --- scripts/in_container/verify_providers.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/in_container/verify_providers.py b/scripts/in_container/verify_providers.py index d46e32caa3..2af7f63e0b 100755 --- a/scripts/in_container/verify_providers.py +++ b/scripts/in_container/verify_providers.py @@ -221,6 +221,11 @@ KNOWN_DEPRECATED_MESSAGES: set[tuple[str, str]] = { "urllib3 2.x. Read more in this issue: https://github.com/urllib3/urllib3/issues/2680", "requests_toolbelt", ), + ( + "zmq.eventloop.ioloop is deprecated in pyzmq 17. pyzmq now works with default tornado and asyncio " + "eventloops.", + "jupyter_client", + ), } KNOWN_COMMON_DEPRECATED_MESSAGES: set[str] = {
