Skip to content

Commit 0b486c0

Browse files
committed
Fix "wheel" build failure
``` Using --no-binary :all: can cause build failures when setuptools-scm or other modern backends are involved, due to recursive build dependency issues (e.g., with importlib-metadata). Removing this flag allows pip to use prebuilt wheels where available, improving reliability of package validation. ``` This was fixed on main in #49555
1 parent 49b3533 commit 0b486c0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/in_container/run_prepare_airflow_packages.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ def build_airflow_packages(package_format: str):
117117
tmpdir,
118118
"--no-deps",
119119
"--no-cache",
120-
"--no-binary",
121-
":all:",
122120
file.as_posix(),
123121
],
124122
check=False,

0 commit comments

Comments
 (0)