eladkal commented on code in PR #30975:
URL: https://github.com/apache/airflow/pull/30975#discussion_r1181266297
##########
airflow/providers/sqlite/operators/sqlite.py:
##########
@@ -49,6 +50,6 @@ def __init__(self, *, sqlite_conn_id: str = "sqlite_default",
**kwargs) -> None:
warnings.warn(
"""This class is deprecated.
Please use
`airflow.providers.common.sql.operators.sql.SQLExecuteQueryOperator`.""",
- DeprecationWarning,
+ AirflowProviderDeprecationWarning,
Review Comment:
Not sure about this one.
sqlite provider doesn't have min Airflow version (as it's one of the pre
installed providers)
Nothing blocks users from updating this provider independently with older
version of Airflow which may result in import error.
I wonder if we have a way to prevent PIP from allowing it?
--
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]