Skip to content

Commit 65142a0

Browse files
committed
fix: get-pyodide now uses 0.19
1 parent 9bb67d2 commit 65142a0

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
This file documents any relevant changes.
4+
## [0.6.4] - 2022-02-21
5+
- fix: get-pyodide now uses 0.19
6+
47
## [0.6.3] - 2022-01-21
58
- feat: Updated python-minifier to allow Python 3.10
69

src/viur_cli/scripts/get_pyodide.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
#!/usr/bin/env python3
22
import io, os, sys, json, shutil, argparse, pathlib, zipfile
33
from urllib.request import urlopen
4-
from urllib.error import HTTPError
54

6-
SUPPORTED = [
5+
SUPPORTED=[
76
# Full Pyodide releases
8-
"v0.18.0",
9-
"v0.18.1",
7+
"v0.19.0",
108
# Current development version of the Pyodide standard
119
"dev",
1210
# Pyodide-nano is shipped as a zip-file
13-
"v0.18.0-nano",
14-
"v0.18.1-nano",
11+
#"v0.18.0-nano",
12+
#"v0.18.1-nano",
1513
]
1614

1715
# Defaults
@@ -22,7 +20,8 @@
2220
"pyodide.asm.data",
2321
"pyodide.asm.js",
2422
"pyodide.asm.wasm",
25-
"pyodide.js"
23+
"pyodide.js",
24+
"pyodide_py.tar"
2625
]
2726
PACKAGES = [
2827
"distlib",

src/viur_cli/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.3"
1+
__version__ = "0.6.4"

0 commit comments

Comments
 (0)