Skip to content

Commit

Permalink
Fix test_reproducible_build_c_flag_from_source. (#2595)
Browse files Browse the repository at this point in the history
The setuptools 75.4.0 release on 11/11 led to the test project in
`test_reproducible_build_c_flag_from_source` having a non-reproducible
wheel build.

See: #2594
  • Loading branch information
jsirois authored Nov 13, 2024
1 parent 991883c commit a430f09
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration/test_reproducible.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ def test_reproducible_build_c_flag_from_source(
dedent(
"""\
[build-system]
requires = ["setuptools"]
# As of the 75.4 release on 11/11/2024, wheel builds are no longer reproducible.
# This band-aids this test, but https://github.com/pex-tool/pex/issues/2594 tracks
# isolating the issue and reporting / fixing over at setuptools.
requires = ["setuptools<75.4"]
build-backend = "setuptools.build_meta"
"""
)
Expand Down

0 comments on commit a430f09

Please sign in to comment.