You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
env["PIP_NO_BUILD_ISOLATION"] ="False"# some other env vars to have pip ignore dependencies.# we supply them ourselves instead.env["PIP_NO_DEPENDENCIES"] =Trueenv["PIP_IGNORE_INSTALLED"] =True
...
Is there any reason to have these (good options for conda package builds) duplicated here so that they appear explicitly in conda package repiece meta.yaml files?
The text was updated successfully, but these errors were encountered:
In PR #480 the use of
--no-deps --no-build-isolation
was introduced as defaults for Pythonpip installs
grayskull/grayskull/strategy/pypi.py
Line 66 in 9d5d5e2
(now at
grayskull/grayskull/strategy/pypi.py
Line 67 in 5b29307
)
However, as @henryiii points out in conda-forge/packaging-feedstock#32 (comment),
conda-build
already sets these defaultsIs there any reason to have these (good options for conda package builds) duplicated here so that they appear explicitly in conda package repiece
meta.yaml
files?The text was updated successfully, but these errors were encountered: