Skip to content

Commit

Permalink
Version 0.26.0a6
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed May 21, 2024
1 parent f05a86c commit e2893d5
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile.envs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export PYVERSION ?= 3.12.1
export PYODIDE_EMSCRIPTEN_VERSION ?= 3.1.58
export PYODIDE_VERSION ?= 0.26.0a5
export PYODIDE_VERSION ?= 0.26.0a6
export PYODIDE_ABI_VERSION ?= 2024_0

export PYTHON_ARCHIVE_SHA256=d01ec6a33bc10009b09c17da95cc2759af5a580a7316b3a446eb4190e13f97b2
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.26.0a5"
__version__ = "0.26.0a6"
2 changes: 1 addition & 1 deletion src/core/pre.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.26.0a5";
API.version = "0.26.0a6";
Module.hiwire = Hiwire;

function getTypeTag(x) {
Expand Down
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.26.0-alpha.5",
"version": "0.26.0-alpha.6",
"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 @@ -6,4 +6,4 @@
* from the version in ``package.json`` which follows the node package manager
* version convention.
*/
export const version: string = "0.26.0a5";
export const version: string = "0.26.0a6";
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.26.0a5"
__version__ = "0.26.0a6"

__all__ = ["__version__", "console", "code", "ffi", "http", "webloop"]

Expand Down
2 changes: 1 addition & 1 deletion src/py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyodide-py"
version = "0.26.0a5"
version = "0.26.0a6"
authors = [{name = "Pyodide developers"}]
description = "A Python package providing core interpreter functionality for Pyodide"
classifiers = [
Expand Down

0 comments on commit e2893d5

Please sign in to comment.