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
Attempting to update Bokeh TravisCI builds to conda-build 3.14 from 3.0.27 for bokeh/bokeh#8217 causes the Bokeh setup.py to ask for a build action interactively, stalling the build:
+conda build conda.recipe --quiet --no-test --no-anaconda-upload
Bokeh includes a JavaScript library (BokehJS) that has its own
build process. How would you like to handle BokehJS:
1) build and install fresh BokehJS
2) install last built BokehJS from bokeh/bokehjs/build
Choice?
However, the interactive build prompt should be (and has been in previous versions) protected by a check for conda-build:
# if this is just conda-build skimming information, skip all this actual work
if not conda_rendering():
fixup_for_packaged() # --build_js and --install_js not valid FROM sdist
fixup_building_sdist() # must build BokehJS when MAKING sdists
bokehjs_action = build_or_install_bokehjs()
Attempting to update Bokeh TravisCI builds to conda-build 3.14 from 3.0.27 for bokeh/bokeh#8217 causes the Bokeh
setup.py
to ask for a build action interactively, stalling the build:However, the interactive build prompt should be (and has been in previous versions) protected by a check for conda-build:
where
conda_rendering
is:@msarahan suggests:
The text was updated successfully, but these errors were encountered: