Skip to content

Commit

Permalink
Add --no-build-isolation to make-bundle script
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kyleknap committed Jul 17, 2023
1 parent 4153da2 commit b788201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/make-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit b788201

Please sign in to comment.