This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 89d5e8b456 Fix failing main due to new release of jsonschema (#32405)
89d5e8b456 is described below

commit 89d5e8b456c3f8e2cbe2691a4e1fa52ef2c1b6c5
Author: eladkal <[email protected]>
AuthorDate: Thu Jul 6 17:36:58 2023 +0300

    Fix failing main due to new release of jsonschema (#32405)
---
 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

Reply via email to