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

amoghdesai 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 492ee626685 Correct HITL version warnings to avoid confusion (#53876)
492ee626685 is described below

commit 492ee626685d06788ac9edad6187c0f4a828925b
Author: Amogh Desai <[email protected]>
AuthorDate: Wed Jul 30 12:34:08 2025 +0530

    Correct HITL version warnings to avoid confusion (#53876)
---
 providers/standard/tests/unit/standard/operators/test_hitl.py | 2 +-
 providers/standard/tests/unit/standard/triggers/test_hitl.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/providers/standard/tests/unit/standard/operators/test_hitl.py 
b/providers/standard/tests/unit/standard/operators/test_hitl.py
index 87b6e317737..70e6e7e8fc8 100644
--- a/providers/standard/tests/unit/standard/operators/test_hitl.py
+++ b/providers/standard/tests/unit/standard/operators/test_hitl.py
@@ -21,7 +21,7 @@ import pytest
 from tests_common.test_utils.version_compat import AIRFLOW_V_3_1_PLUS
 
 if not AIRFLOW_V_3_1_PLUS:
-    pytest.skip("Human in the loop public API compatible with Airflow >= 
3.0.1", allow_module_level=True)
+    pytest.skip("Human in the loop public API compatible with Airflow >= 
3.1.0", allow_module_level=True)
 
 from typing import TYPE_CHECKING, Any
 
diff --git a/providers/standard/tests/unit/standard/triggers/test_hitl.py 
b/providers/standard/tests/unit/standard/triggers/test_hitl.py
index ac96d9eed1e..75428839d75 100644
--- a/providers/standard/tests/unit/standard/triggers/test_hitl.py
+++ b/providers/standard/tests/unit/standard/triggers/test_hitl.py
@@ -22,7 +22,7 @@ import pytest
 from tests_common.test_utils.version_compat import AIRFLOW_V_3_1_PLUS
 
 if not AIRFLOW_V_3_1_PLUS:
-    pytest.skip("Human in the loop public API compatible with Airflow >= 
3.0.1", allow_module_level=True)
+    pytest.skip("Human in the loop public API compatible with Airflow >= 
3.1.0", allow_module_level=True)
 
 import asyncio
 from datetime import timedelta

Reply via email to