potiuk commented on code in PR #63331: URL: https://github.com/apache/airflow/pull/63331#discussion_r2917137202
########## dev/registry/pyproject.toml: ########## @@ -16,7 +16,14 @@ # under the License. [build-system] -requires = ["hatchling==1.29.0"] +requires = [ + "hatchling==1.29.0", + "packaging==26.0", + "pathspec==1.0.4", + "pluggy==1.6.0", + "tomli==2.4.0; python_version < '3.11'", + "trove-classifiers==2026.1.14.14", Review Comment: How it works - when you build a package from sdist (or sources) the build backend creates an isolated environment with those deps to build it. And by pinning all deps (and upgrading them every time we run `breeze ci upgrade` we make sure that such build is reproducible and will not fail because someone releases a breaking change in one of those deps -- 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]
