potiuk commented on code in PR #31830: URL: https://github.com/apache/airflow/pull/31830#discussion_r1401245775
########## dev/breeze/src/airflow_breeze/commands/release_management_commands.py: ########## @@ -16,22 +16,27 @@ # under the License. from __future__ import annotations +import logging import os import re import shlex import shutil import sys import textwrap import time +from collections import defaultdict from copy import deepcopy from datetime import datetime from pathlib import Path from subprocess import DEVNULL from typing import IO, Any, Generator, NamedTuple import click +import semver +from github import Github, UnknownObjectException from rich.progress import Progress from rich.syntax import Syntax +from tests.test_utils.providers import get_provider_min_airflow_version Review Comment: No imports from airflow in `breeze` sorry :) . Breeze venv is (and should be) separate from Airflow :). You should use `get_min_airflow_version` from breeze's `utils.packages` -- 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]
