Skip to content

Commit

Permalink
v0.26.0a4
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Mar 14, 2024
1 parent 4444d1a commit 404305c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pyodide-build/pyodide_build/__init__.py
@@ -1 +1 @@
__version__ = "0.26.0.dev0"
__version__ = "0.26.0a4"
2 changes: 1 addition & 1 deletion src/core/pre.js
Expand Up @@ -2,7 +2,7 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.26.0.dev0";
API.version = "0.26.0a4";
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
@@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.26.0-dev.0",
"version": "0.26.0-alpha.4",
"description": "The Pyodide JavaScript package",
"keywords": [
"python",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.ts
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.0.dev0";
export const version: string = "0.26.0a4";
2 changes: 1 addition & 1 deletion src/py/pyodide/__init__.py
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.0.dev0"
__version__ = "0.26.0a4"

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

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

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

0 comments on commit 404305c

Please sign in to comment.