potiuk commented on code in PR #48770:
URL: https://github.com/apache/airflow/pull/48770#discussion_r2028440445
##########
dev/breeze/src/airflow_breeze/commands/release_management_commands.py:
##########
@@ -427,6 +427,17 @@ def
update_version_suffix_in_pyproject_toml(version_suffix: str, pyproject_toml_
f"[info]Not updating version suffix to {version_suffix}
for {line} as it already has the "
f"{version_suffix} suffix."
)
+ if line.strip().startswith('"apache-airflow-core') and "==" in line:
+ if not line.endswith(
+ f'.{version_suffix}"',
Review Comment:
```suggestion
f'.{version_suffix},"',
```
--
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]