ephraimbuddy commented on code in PR #60508: URL: https://github.com/apache/airflow/pull/60508#discussion_r2689915313
########## dev/breeze/src/airflow_breeze/commands/release_command.py: ########## @@ -30,8 +30,8 @@ from airflow_breeze.utils.path_utils import AIRFLOW_ROOT_PATH from airflow_breeze.utils.run_utils import run_command -# Pattern to match Airflow release versions (e.g., "3.0.5") -RELEASE_PATTERN = re.compile(r"^(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)$") +# Pattern to match Airflow release versions starting with 3 (e.g., "3.0.5") +RELEASE_PATTERN = re.compile(r"^(?P<major>3)\.(?P<minor>\d+)\.(?P<patch>\d+)$") Review Comment: This is so we don't accidentally delete 2.11 in svn -- 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]
