Skip to content

Fix provider distribution builds failing with flit 4 - #71118

Merged
potiuk merged 5 commits into
apache:mainfrom
rjgoyln:fix-flit-4-provider-build
Aug 5, 2026
Merged

Fix provider distribution builds failing with flit 4#71118
potiuk merged 5 commits into
apache:mainfrom
rjgoyln:fix-flit-4-provider-build

Conversation

@rjgoyln

@rjgoyln rjgoyln commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Summary

flit 4.0.1, published on 2026-08-04, removed the --setup-py / --no-setup-py options, and breeze depended on flit>=3.12.0 with no upper bound, so CI resolved it within minutes of upload and every flit-backed provider build began aborting during argument parsing. The flag has been a no-op since long before the 3.12 floor breeze requires, so dropping it unblocks CI.

The cap keeps that backend where CI has exercised it. flit build uses no PEP 517 build isolation, so whichever flit_core is installed builds every provider distribution and the flit_core==3.12.0 pin each provider declares never applies on the path we release from — which is how a new major became the build backend without anyone choosing it. flit 4 moves core metadata to 2.5 among other changes to build output, none of it exercised against provider distributions or the reproducible-build checks; #71121 tracks adopting it deliberately.


Was generative AI tooling used to co-author this PR?
  • Yes — Claude Code (Opus 5)

Generated-by: Claude Code (Opus 5) following the guidelines

flit 4.0 removed the --setup-py/--no-setup-py options, so every flit-backed
provider build now aborts during argument parsing as soon as flit 4 resolves.
Not generating setup.py has been flit's default since well before the 3.12
floor breeze requires, so no longer asking for it explicitly leaves the built
distributions unchanged.
rjgoyln added 3 commits August 5, 2026 03:03
`flit build` does not use PEP 517 build isolation, so whichever flit_core is
installed becomes the backend for every provider distribution and the
`flit_core==3.12.0` pin each provider declares never applies on the path we
release from. flit_core 4.0.1 writes Import-Name and Import-Namespace without a
trailing newline (pypa/flit#813), consuming the blank
line that separates the metadata headers from the description, so the resulting
METADATA parses with MissingHeaderBodySeparatorDefect.

Removal of the cap is tracked at
apache#71121.
The assertion mirrors the argv literal it guards and mocks away the argument
parser that actually rejected the flag, so it detects reverts rather than the
class of breakage it was written for. The provider distribution build jobs
cover that.
…fect

flit 4.0.2 fixed the METADATA corruption the comment cited, but the reason to
hold the backend at 3.12.0 is that nothing has exercised flit 4 against provider
distributions or the reproducible-build checks.
@vatsrahul1001 vatsrahul1001 added this to the Airflow 3.3.1 milestone Aug 5, 2026
@vatsrahul1001 vatsrahul1001 added the changelog:skip Changes that should be skipped from the changelog (CI, tests, etc..) label Aug 5, 2026
@potiuk
potiuk merged commit 9a85faa into apache:main Aug 5, 2026
112 of 115 checks passed
@github-actions

github-actions Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Backport successfully created: v3-3-test

Note: As of Merging PRs targeted for Airflow 3.X
the committer who merges the PR is responsible for backporting the PRs that are bug fixes (generally speaking) to the maintenance branches.

In matter of doubt please ask in #release-management Slack channel.

Status Branch Result
v3-3-test PR Link

vatsrahul1001 added a commit that referenced this pull request Aug 5, 2026
) (#71149)

* Fix provider distribution builds failing with flit 4

flit 4.0 removed the --setup-py/--no-setup-py options, so every flit-backed
provider build now aborts during argument parsing as soon as flit 4 resolves.
Not generating setup.py has been flit's default since well before the 3.12
floor breeze requires, so no longer asking for it explicitly leaves the built
distributions unchanged.

* Cap flit below 4 so provider distributions keep valid metadata

`flit build` does not use PEP 517 build isolation, so whichever flit_core is
installed becomes the backend for every provider distribution and the
`flit_core==3.12.0` pin each provider declares never applies on the path we
release from. flit_core 4.0.1 writes Import-Name and Import-Namespace without a
trailing newline (pypa/flit#813), consuming the blank
line that separates the metadata headers from the description, so the resulting
METADATA parses with MissingHeaderBodySeparatorDefect.

Removal of the cap is tracked at
#71121.

* Drop the flit flag regression test

The assertion mirrors the argv literal it guards and mocks away the argument
parser that actually rejected the flag, so it detects reverts rather than the
class of breakage it was written for. The provider distribution build jobs
cover that.

* Rest the flit cap on the unvalidated backend rather than the 4.0.1 defect

flit 4.0.2 fixed the METADATA corruption the comment cited, but the reason to
hold the backend at 3.12.0 is that nothing has exercised flit 4 against provider
distributions or the reproducible-build checks.

---------
(cherry picked from commit 9a85faa)

Co-authored-by: rjgoyln <151457491+rjgoyln@users.noreply.github.com>
Co-authored-by: Rahul Vats <43964496+vatsrahul1001@users.noreply.github.com>
vatsrahul1001 added a commit that referenced this pull request Aug 5, 2026
) (#71149)

* Fix provider distribution builds failing with flit 4

flit 4.0 removed the --setup-py/--no-setup-py options, so every flit-backed
provider build now aborts during argument parsing as soon as flit 4 resolves.
Not generating setup.py has been flit's default since well before the 3.12
floor breeze requires, so no longer asking for it explicitly leaves the built
distributions unchanged.

* Cap flit below 4 so provider distributions keep valid metadata

`flit build` does not use PEP 517 build isolation, so whichever flit_core is
installed becomes the backend for every provider distribution and the
`flit_core==3.12.0` pin each provider declares never applies on the path we
release from. flit_core 4.0.1 writes Import-Name and Import-Namespace without a
trailing newline (pypa/flit#813), consuming the blank
line that separates the metadata headers from the description, so the resulting
METADATA parses with MissingHeaderBodySeparatorDefect.

Removal of the cap is tracked at
#71121.

* Drop the flit flag regression test

The assertion mirrors the argv literal it guards and mocks away the argument
parser that actually rejected the flag, so it detects reverts rather than the
class of breakage it was written for. The provider distribution build jobs
cover that.

* Rest the flit cap on the unvalidated backend rather than the 4.0.1 defect

flit 4.0.2 fixed the METADATA corruption the comment cited, but the reason to
hold the backend at 3.12.0 is that nothing has exercised flit 4 against provider
distributions or the reproducible-build checks.

---------
(cherry picked from commit 9a85faa)

Co-authored-by: rjgoyln <151457491+rjgoyln@users.noreply.github.com>
Co-authored-by: Rahul Vats <43964496+vatsrahul1001@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:dev-tools backport-to-v3-3-test Backport to v3-3-test changelog:skip Changes that should be skipped from the changelog (CI, tests, etc..)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants