Skip to content

Commit bd273b1

Browse files
Merge pull request #140 from pyscript/micropython-preview
Updated MicroPython with latest symbol fixes
2 parents 4238570 + 4531941 commit bd273b1

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/interpreter/micropython.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const progress = createProgress('mpy');
2727

2828
export default {
2929
type,
30-
module: (version = '1.25.0') =>
30+
module: (version = '1.26.0-preview-293') =>
3131
`https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@${version}/micropython.mjs`,
3232
async engine({ loadMicroPython }, config, url, baseURL) {
3333
const { stderr, stdout, get } = stdio({

esm/interpreter/webr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const run = async (interpreter, code) => {
1919
export default {
2020
type,
2121
experimental: true,
22-
module: (version = '0.4.4') =>
22+
module: (version = '0.5.3') =>
2323
`https://cdn.jsdelivr.net/npm/webr@${version}/dist/webr.mjs`,
2424
async engine(module, config, _, baseURL) {
2525
const { get } = stdio();

node.importmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"imports": {
33
"http://pyodide": "./test/mocked/pyodide.mjs",
44
"https://cdn.jsdelivr.net/pyodide/v0.27.7/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
5-
"https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@1.25.0/micropython.mjs": "./test/mocked/micropython.mjs",
5+
"https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@1.26.0-preview-293/micropython.mjs": "./test/mocked/micropython.mjs",
66
"./3rd-party/toml.js": "./test/mocked/toml.mjs"
77
}
88
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@
9595
"to-json-callback": "^0.1.1"
9696
},
9797
"worker": {
98-
"blob": "sha256-8QhxMuSDadSIcmEC3hl5kz2JvOET2oQF3G/GQQ3NWX4="
98+
"blob": "sha256-dEOo1oY3uhPj8pAf26F/qLWtCse+HXTpK5rRahJv9C0="
9999
}
100100
}

versions/micropython

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.25.0
1+
1.26.0-preview-293

versions/webr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.4
1+
0.5.3

0 commit comments

Comments
 (0)