potiuk commented on code in PR #37444:
URL: https://github.com/apache/airflow/pull/37444#discussion_r1491060978
##########
dev/breeze/src/airflow_breeze/commands/release_management_commands.py:
##########
@@ -711,8 +804,8 @@ def prepare_provider_packages(
sys.exit(0)
get_console().print("\n[success]Successfully built packages!\n\n")
get_console().print("\n[info]Packages available in dist:\n")
- for file in sorted(DIST_DIR.glob("apache*")):
- get_console().print(file.name)
+ for dist_info in _dist_packages(package_format=package_format,
build_type="providers"):
+ get_console().print(str(dist_info))
Review Comment:
I think for providers it's less of a problem, because 1) we do not have
custom build hooks there 2) pyproject.toml is automatically generated from
template, and is basically the same for every provided (- paths it uses). And
we also check it during main build. But if you feel like adding it would be
good - we can definitely add it as follow-up
--
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]