This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-6-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit fc61875ca3e2708997767be55324b2b63f2875cb Author: eladkal <[email protected]> AuthorDate: Thu Jul 6 17:36:58 2023 +0300 Fix failing main due to new release of jsonschema (#32405) (cherry picked from commit 89d5e8b456c3f8e2cbe2691a4e1fa52ef2c1b6c5) --- scripts/in_container/verify_providers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/in_container/verify_providers.py b/scripts/in_container/verify_providers.py index bc56a5fa93..78cd4c8118 100755 --- a/scripts/in_container/verify_providers.py +++ b/scripts/in_container/verify_providers.py @@ -164,6 +164,10 @@ KNOWN_COMMON_DEPRECATED_MESSAGES: set[str] = { "urllib3 (1.26.9) or chardet (5.1.0)/charset_normalizer (2.0.12) doesn't match a supported version!", "urllib3 (1.26.12) or chardet (5.1.0)/charset_normalizer (2.0.12) doesn't match a supported version!", "Jupyter is migrating its paths to use standard platformdirs given by the platformdirs library.", + ( + "Importing ErrorTree directly from the jsonschema package is deprecated and will become" + " an ImportError. Import it from jsonschema.exceptions instead." + ), } # The set of warning messages generated by direct importing of some deprecated modules. We should only
