gopidesupavan commented on code in PR #43818:
URL: https://github.com/apache/airflow/pull/43818#discussion_r1835334083


##########
tests_common/test_utils/compat.py:
##########
@@ -44,6 +45,11 @@
 AIRFLOW_V_2_10_PLUS = Version(AIRFLOW_VERSION.base_version) >= 
Version("2.10.0")
 AIRFLOW_V_3_0_PLUS = Version(AIRFLOW_VERSION.base_version) >= Version("3.0.0")
 
+if AIRFLOW_V_3_0_PLUS:

Review Comment:
   As far as I know, AIP-44 is not yet enabled in Airflow 2.10. If anyone 
develops a new feature using AIP-44 functionality in providers, it may pass all 
tests in CI but could break once released because AIP-44 isn't enabled on 
users' systems. 
   
   For example, the `use_airflow_context` feature won’t work on users' setups 
since it requires AIP-44. If we release it claiming compatibility with 2.10, it 
may appear functional in our CI if AIP-44 is enabled, but in reality, it will 
only work when AIP-44 is activated on the user’s side.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to