jedcunningham commented on code in PR #26985:
URL: https://github.com/apache/airflow/pull/26985#discussion_r993648552
##########
dev/breeze/src/airflow_breeze/utils/path_utils.py:
##########
@@ -142,6 +142,12 @@ def reinstall_if_setup_changed() -> bool:
except ModuleNotFoundError as e:
if "importlib_metadata" in e.msg:
return False
+ if "apache-airflow-breeze" in e.msg:
+ print(
+ """Missing Package`apache-airflow-breeze`.
+ Use `pip install -e ./dev/breeze` to install the package."""
Review Comment:
```suggestion
Use `pipx install -e ./dev/breeze` to install the
package."""
```
We are using `pipx` for breeze.
--
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]