File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
packages/pyodide-kernel/src Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -88,12 +88,14 @@ export class PyodideRemoteKernel {
8888
8989 const pythonConfig = [
9090 'import piplite.piplite' ,
91- `piplite.piplite._PIPLITE_DEFAULT_INSTALL_ARGS = ${ JSON . stringify ( {
92- ...pipliteInstallDefaultOptions ,
93- } ) } `,
94- `piplite.piplite._PIPLITE_INTERNAL_FLAGS = ${ JSON . stringify ( {
95- disable_pypi : disablePyPIFallback ,
96- } ) } `,
91+ 'piplite.piplite._PIPLITE_DEFAULT_INSTALL_ARGS = {' ,
92+ ' "keep_going": False,' ,
93+ ' "deps": True,' ,
94+ ' "credentials": None,' ,
95+ ' "pre": False,' ,
96+ ' "verbose": False,' ,
97+ '}' ,
98+ `piplite.piplite._PIPLITE_INTERNAL_FLAGS = {"disable_pypi": ${ disablePyPIFallback ? 'True' : 'False' } }` ,
9799 `piplite.piplite._PIPLITE_URLS = ${ JSON . stringify ( pipliteUrls ) } ` ,
98100 ] ;
99101
You can’t perform that action at this time.
0 commit comments