uranusjr commented on code in PR #68283: URL: https://github.com/apache/airflow/pull/68283#discussion_r3494059287
########## providers/common/io/src/airflow/providers/common/io/version_compat.py: ########## @@ -33,3 +33,4 @@ def get_base_airflow_version_tuple() -> tuple[int, int, int]: AIRFLOW_V_3_0_PLUS = get_base_airflow_version_tuple() >= (3, 0, 0) +AIRFLOW_V_3_3_PLUS = get_base_airflow_version_tuple() >= (3, 3, 0) Review Comment: Do we expect to need this in the future? It’s currently only used in tests and can be put in tests_commons instead. -- 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]
