mirror of https://github.com/pyodide/pyodide.git
0.22.1
This commit is contained in:
parent
b1ae5b689f
commit
5ef5622414
|
@ -45,7 +45,7 @@ list from there with "The Pyodide development team" like in the example below:
|
|||
month = aug,
|
||||
year = 2021,
|
||||
publisher = {Zenodo},
|
||||
version = {0.22.0},
|
||||
version = {0.22.1},
|
||||
doi = {10.5281/zenodo.5156931},
|
||||
url = {https://doi.org/10.5281/zenodo.5156931}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.22.0"
|
||||
__version__ = "0.22.1"
|
||||
|
|
|
@ -2,7 +2,7 @@ const API = Module.API;
|
|||
const Hiwire = {};
|
||||
const Tests = {};
|
||||
API.tests = Tests;
|
||||
API.version = "0.22.0";
|
||||
API.version = "0.22.1";
|
||||
Module.hiwire = Hiwire;
|
||||
const getTypeTag = (x) => Object.prototype.toString.call(x);
|
||||
API.getTypeTag = getTypeTag;
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "pyodide",
|
||||
"version": "0.22.0",
|
||||
"version": "0.22.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "pyodide",
|
||||
"version": "0.22.0",
|
||||
"version": "0.22.1",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"base-64": "^1.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "pyodide",
|
||||
"version": "0.22.0",
|
||||
"version": "0.22.1",
|
||||
"description": "The Pyodide JavaScript package",
|
||||
"keywords": [
|
||||
"python",
|
||||
|
|
|
@ -5,4 +5,4 @@
|
|||
* The version here follows PEP440 which is different from the one in package.json,
|
||||
* as we want to compare this with the version of Pyodide Python package without conversion.
|
||||
*/
|
||||
export const version: string = "0.22.0";
|
||||
export const version: string = "0.22.1";
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
# This package is imported by the test suite as well, and currently we don't use
|
||||
# pytest mocks for js or pyodide_js, so make sure to test "if IN_BROWSER" before
|
||||
# importing from these.
|
||||
__version__ = "0.22.0"
|
||||
__version__ = "0.22.1"
|
||||
|
||||
__all__ = ["__version__", "console", "code", "ffi", "http", "webloop"]
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = pyodide
|
||||
version = 0.22.0
|
||||
version = 0.22.1
|
||||
author = Pyodide developers
|
||||
description = "A Python package providing core interpreter functionality for Pyodide."
|
||||
long_description = file: README.md
|
||||
|
|
Loading…
Reference in New Issue