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 {
88
88
89
89
const pythonConfig = [
90
90
'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' } }` ,
97
99
`piplite.piplite._PIPLITE_URLS = ${ JSON . stringify ( pipliteUrls ) } ` ,
98
100
] ;
99
101
You can’t perform that action at this time.
0 commit comments