jscheffl commented on code in PR #60674: URL: https://github.com/apache/airflow/pull/60674#discussion_r2700820030
########## dev/README_RELEASE_PYTHON_CLIENT.md: ########## @@ -507,6 +507,24 @@ For example: ! /CODE_OF_CONDUCT.md ``` +### NOTICE files verification + +Verify that all NOTICE files contain the required ASF notice and current copyright year. + +Run the verification script from the Airflow repository root: + +```shell script +python3 dev/verify_notice_files.py --sources-only --year 2026 --verbose +``` + +For distribution packages, after building: + +```shell script +python3 dev/verify_notice_files.py --dist-only --year 2026 --verbose Review Comment: Would the year not be auto-discoverable by the script? Maybe to be able to optionally override the year if release is cut on Dec 31st and somebody validates on Jan 1st.... but in all other cases we are in the same year. If you have verbose by default, is logging then set correct? Or does a verbose output need to be inspected for each release check? I'd favor less verbosity in default and a clear PASS/ERROR result. -- 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]
