From b788201a841ba0e1917d642543541e79651cd022 Mon Sep 17 00:00:00 2001 From: kyleknap Date: Mon, 17 Jul 2023 13:18:02 -0700 Subject: [PATCH] Add --no-build-isolation to make-bundle script This will ensure we strictly pull down the sdist and not try into install any other build dependencies (e.g. Cython) as part of downloading our main runtime dependencies. --- scripts/make-bundle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-bundle b/scripts/make-bundle index 14bfedc57dcc..180a5eb1bd67 100755 --- a/scripts/make-bundle +++ b/scripts/make-bundle @@ -30,7 +30,7 @@ BUILDTIME_DEPS = [ ('setuptools-scm', '3.3.3'), ('wheel', '0.33.6'), ] -PIP_DOWNLOAD_ARGS = '--no-binary :all:' +PIP_DOWNLOAD_ARGS = '--no-build-isolation --no-binary :all:' class BadRCError(Exception):