potiuk commented on code in PR #37444:
URL: https://github.com/apache/airflow/pull/37444#discussion_r1491063071
##########
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:
BTW. We could create single venv and install all providers there - after all
of them are prepared, we usually prepare 10-15 providers together, so I think
the overhead will be almost not noticeable there.
--
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]