pankajkoti commented on code in PR #30994:
URL: https://github.com/apache/airflow/pull/30994#discussion_r1182924304
##########
dev/provider_packages/prepare_provider_packages.py:
##########
@@ -54,6 +54,10 @@
ALL_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
+MIN_AIRFLOW_VERSION = "2.4.0"
+
+MIN_AIRFLOW_VERSION_EXCEPTIONS = {"openlineage": "2.6.0"}
Review Comment:
maybe we could also add a comment just above or below MIN_AIRFLOW_VERSION
mentioning how exceptions can be set with MIN_AIRFLOW_VERSION_EXCEPTIONS. Or is
it too much? :)
##########
airflow/providers/yandex/__init__.py:
##########
@@ -14,3 +14,17 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
+from __future__ import annotations
+
Review Comment:
Just wondering this file does not have the note that it was auto-generated.
Perhaps is this because of our suspension logic?
Did we create this file manually?
--
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]