Skip to content

Commit

Permalink
Version 0.22.0a3
Browse files Browse the repository at this point in the history
Only difference between this and 0.22.0a2 is the sys.exit fix for
the command line runner (#3241). Just trying to get Pyodide working
in numpy CI...
  • Loading branch information
hoodmane committed Nov 10, 2022
1 parent 1608388 commit 0b4e19d
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

project = "Pyodide"
copyright = "2019-2022, Pyodide contributors and Mozilla"
pyodide_version = "0.22.0.dev0"
pyodide_version = "0.22.0a3"

if ".dev" in pyodide_version or os.environ.get("READTHEDOCS_VERSION") == "latest":
CDN_URL = "https://cdn.jsdelivr.net/pyodide/dev/full/"
Expand Down
2 changes: 1 addition & 1 deletion pyodide-build/pyodide_build/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.22.0.dev0"
__version__ = "0.22.0a3"
2 changes: 1 addition & 1 deletion src/core/pre.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.22.0.dev0";
API.version = "0.22.0a3";
Module.hiwire = Hiwire;
4 changes: 2 additions & 2 deletions src/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.22.0-dev.0",
"version": "0.22.0-alpha.3",
"description": "The Pyodide JavaScript package",
"keywords": [
"python",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
* 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.
*/
const version: string = "0.22.0.dev0";
const version: string = "0.22.0a3";

export default version;
2 changes: 1 addition & 1 deletion src/py/pyodide/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.dev0"
__version__ = "0.22.0a3"

__all__ = ["__version__"]

Expand Down
2 changes: 1 addition & 1 deletion src/py/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyodide
version = 0.22.0.dev0
version = 0.22.0a3
author = Pyodide developers
description = "A Python package providing core interpreter functionality for Pyodide."
long_description = file: README.md
Expand Down

0 comments on commit 0b4e19d

Please sign in to comment.