kaxil opened a new pull request, #69363: URL: https://github.com/apache/airflow/pull/69363
Static checks fail on any full-regeneration run (canary builds on main, and PRs that run with `upgrade-to-newer-dependencies`, e.g. [this run](https://github.com/apache/airflow/actions/runs/28676047756/job/85051334218)): the `update-providers-build-files` hook wants to remove the "Optional cross provider package dependencies" section from `providers/anthropic/docs/index.rst`. The Anthropic provider (#69003) merged with a `docs/index.rst` generated before #68991, which changed doc generation to skip cross-provider deps that are already required dependencies. `apache-airflow-providers-common-compat` is a required dependency of the Anthropic provider (already listed in its Requirements table), so the section advertising `pip install apache-airflow-providers-anthropic[common.compat]` refers to an extra that does not exist in the package. ## Solution Regenerate the file with the `update-providers-build-files` prek hook. The removed section matches exactly what the hook produces in CI. -- 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]
