Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/jupyter-lite.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@jupyterlite/pyodide-kernel-extension:kernel": {
"loadPyodideOptions": {
"packages": ["matplotlib", "micropip", "numpy", "sqlite3", "ssl"],
"lockFileURL": "https://cdn.jsdelivr.net/pyodide/v0.28.1/full/pyodide-lock.json?from-lite-config=1"
"lockFileURL": "https://cdn.jsdelivr.net/pyodide/v0.28.2/full/pyodide-lock.json?from-lite-config=1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jupyterlite_pyodide_kernel/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
PYODIDE_URL_ENV_VAR = "JUPYTERLITE_PYODIDE_URL"

#: probably only compatible with this version of pyodide
PYODIDE_VERSION = "0.28.1"
PYODIDE_VERSION = "0.28.2"

#: the only kind of noarch wheel piplite understands
NOARCH_WHL = "py3-none-any.whl"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"pyodideUrl": {
"description": "The path to the main pyodide.js entry point",
"type": "string",
"default": "https://cdn.jsdelivr.net/pyodide/v0.28.1/full/pyodide.js",
"default": "https://cdn.jsdelivr.net/pyodide/v0.28.2/full/pyodide.js",
"format": "uri"
},
"disablePyPIFallback": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pyodide-kernel-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const KERNEL_ICON_URL = `data:image/svg+xml;base64,${btoa(KERNEL_ICON_SVG_STR)}`
/**
* The default CDN fallback for Pyodide
*/
const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.28.1/full/pyodide.js';
const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.28.2/full/pyodide.js';

/**
* The id for the extension, and key in the litePlugins.
Expand Down
2 changes: 1 addition & 1 deletion packages/pyodide-kernel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"devDependencies": {
"@babel/core": "^7.22.17",
"esbuild": "^0.19.2",
"pyodide": "0.28.1",
"pyodide": "0.28.2",
"rimraf": "^6.0.1",
"typescript": "~5.2.2"
},
Expand Down
5 changes: 2 additions & 3 deletions packages/pyodide-kernel/py/piplite/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# piplite

This is a companion package to
[micropip](https://github.com/pyodide/pyodide/tree/main/packages/micropip) which only
works inside a [Pyodide](https://github.com/pyodide/pyodide/) runtime.
This is a companion package to [micropip](https://github.com/pyodide/micropip) which
only works inside a [Pyodide](https://github.com/pyodide/pyodide/) runtime.

It adds the ability to use extra Warehouse-like API responses to resolve `pip`
dependencies, and can disable the fallback to `pypi.org`
4 changes: 1 addition & 3 deletions ui-tests/tests/general.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { test } from '@jupyterlab/galata';

import { expect } from '@playwright/test';
import { test, expect } from '@jupyterlab/galata';

const TIMEOUT = 600000;

Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ __metadata:
coincident: ^1.2.3
comlink: ^4.4.2
esbuild: ^0.19.2
pyodide: 0.28.1
pyodide: 0.28.2
rimraf: ^6.0.1
typescript: ~5.2.2
languageName: unknown
Expand Down Expand Up @@ -7607,12 +7607,12 @@ __metadata:
languageName: node
linkType: hard

"pyodide@npm:0.28.1":
version: 0.28.1
resolution: "pyodide@npm:0.28.1"
"pyodide@npm:0.28.2":
version: 0.28.2
resolution: "pyodide@npm:0.28.2"
dependencies:
ws: ^8.5.0
checksum: a84604aaf2a0f9e01475c77b58a9cacadf49b42d8f4ab34f8165754a9a954e8b9c7c3bdeaf3977a26652c9b19be47d13467ef82be21d7228a4e6edfd09da5a76
checksum: 3efb803639ef3bd67a6a6528b37df0b89f18617b0bc09121386c6e84ecbea19cd8bb1aa6e8b965be9b0a4e27d30e08e5110b3c2a0a845797b573b2ec071b8c33
languageName: node
linkType: hard

Expand Down
Loading