Version 0.23.0 (#3712)

This commit is contained in:
Roman Yurchak 2023-03-30 21:30:18 +00:00 committed by GitHub
parent 2b20b2b0d0
commit 53de1c3e72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 15 additions and 13 deletions

View File

@ -148,14 +148,14 @@ Here is a complete example of a Github Actions workflow for building a Python
wheel out of tree:
```yaml
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.10.2
python-version: 3.11.2
- run: |
pip install pyodide-build>=0.22.0
pip install pyodide-build>=0.23.0
echo EMSCRIPTEN_VERSION=$(pyodide config get emscripten_version) >> $GITHUB_ENV
- uses: mymindstorm/setup-emsdk@v12
with:

View File

@ -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.23.0},
doi = {10.5281/zenodo.5156931},
url = {https://doi.org/10.5281/zenodo.5156931}
}

View File

@ -13,7 +13,9 @@ myst:
# Change Log
## Unreleased
## Version 0.23.0
_March 30, 2023_
### General

View File

@ -1 +1 @@
__version__ = "0.22.0"
__version__ = "0.23.0"

View File

@ -2,7 +2,7 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.22.0";
API.version = "0.23.0";
Module.hiwire = Hiwire;
const getTypeTag = (x) => Object.prototype.toString.call(x);
API.getTypeTag = getTypeTag;

View File

@ -1,12 +1,12 @@
{
"name": "pyodide",
"version": "0.22.0",
"version": "0.23.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "pyodide",
"version": "0.22.0",
"version": "0.23.0",
"license": "Apache-2.0",
"dependencies": {
"base-64": "^1.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.22.0",
"version": "0.23.0",
"description": "The Pyodide JavaScript package",
"keywords": [
"python",

View File

@ -6,4 +6,4 @@
* from the version in ``package.json`` which follows the node package manager
* version convention.
*/
export const version: string = "0.22.0";
export const version: string = "0.23.0";

View File

@ -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.23.0"
__all__ = ["__version__", "console", "code", "ffi", "http", "webloop"]

View File

@ -1,6 +1,6 @@
[metadata]
name = pyodide-py
version = 0.22.0
version = 0.23.0
author = Pyodide developers
description = "A Python package providing core interpreter functionality for Pyodide."
long_description = file: README.md