potiuk commented on PR #45142:
URL: https://github.com/apache/airflow/pull/45142#issuecomment-2558408764
> oh nice good to know , due to the click version difference it produced
different hashes :)
Yeah. We are hashing dictionaries of command information that click
produces, I think the difference is that we have a `""` as default value and
click 8.1.8 implemented a fix for that.
```python
option_chicken_egg_providers = click.option(
"--chicken-egg-providers",
default="",
help="List of chicken-egg provider packages - "
"those that have airflow_version >= current_version and should "
"be installed in CI from locally built packages with >=
current_version.dev0 ",
envvar="CHICKEN_EGG_PROVIDERS",
)
```
Release notes: https://github.com/pallets/click/releases/tag/8.1.8
Fix: https://github.com/pallets/click/pull/2724
--
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]