pinokiod 3.137.0 → 3.139.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kernel/bin/conda.js +3 -3
- package/package.json +1 -1
package/kernel/bin/conda.js
CHANGED
|
@@ -231,8 +231,8 @@ report_errors: false`)
|
|
|
231
231
|
if (pinned_exists) {
|
|
232
232
|
//await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), `conda=24.11.1`)
|
|
233
233
|
//await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), `conda ==24.11.3`)
|
|
234
|
-
|
|
235
|
-
await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), "sqlite ==3.47.2")
|
|
234
|
+
await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), "conda ==25.5.1\nsqlite ==3.47.2")
|
|
235
|
+
//await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), "sqlite ==3.47.2")
|
|
236
236
|
//await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), "")
|
|
237
237
|
//sqlite ==3.47.2`)
|
|
238
238
|
// await fs.promises.writeFile(this.kernel.path('bin/miniconda/conda-meta/pinned'), `conda=24.9.0`)
|
|
@@ -268,7 +268,7 @@ report_errors: false`)
|
|
|
268
268
|
let cmds = [
|
|
269
269
|
//"conda clean -y --index-cache",
|
|
270
270
|
"conda clean -y --all",
|
|
271
|
-
`conda install -y -c conda-forge sqlite=3.47.2 conda-libmamba-solver>=25.4.0 ${mods}`,
|
|
271
|
+
`conda install -y -c conda-forge "sqlite=3.47.2" "conda-libmamba-solver>=25.4.0" ${mods}`,
|
|
272
272
|
|
|
273
273
|
// `conda config --file ${this.kernel.path('condarc')} --set remote_connect_timeout_secs 20`,
|
|
274
274
|
// `conda config --file ${this.kernel.path('condarc')} --set remote_read_timeout_secs 300`,
|