mirror of https://github.com/pyodide/pyodide.git
v0.26.0a2
This commit is contained in:
parent
05c7c3ff8c
commit
6537b03076
|
@ -1 +1 @@
|
|||
__version__ = "0.26.0.dev0"
|
||||
__version__ = "0.26.0a2"
|
||||
|
|
|
@ -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.0a2";
|
||||
Module.hiwire = Hiwire;
|
||||
|
||||
function getTypeTag(x) {
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "pyodide",
|
||||
"version": "0.26.0-dev.0",
|
||||
"version": "0.26.0-alpha.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "pyodide",
|
||||
"version": "0.26.0-dev.0",
|
||||
"version": "0.26.0-alpha.2",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"base-64": "^1.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "pyodide",
|
||||
"version": "0.26.0-dev.0",
|
||||
"version": "0.26.0-alpha.2",
|
||||
"description": "The Pyodide JavaScript package",
|
||||
"keywords": [
|
||||
"python",
|
||||
|
|
|
@ -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.0a2";
|
||||
|
|
|
@ -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.0a2"
|
||||
|
||||
__all__ = ["__version__", "console", "code", "ffi", "http", "webloop"]
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "pyodide-py"
|
||||
version = "0.26.0.dev0"
|
||||
version = "0.26.0a2"
|
||||
authors = [{name = "Pyodide developers"}]
|
||||
description = "A Python package providing core interpreter functionality for Pyodide"
|
||||
classifiers = [
|
||||
|
|
Loading…
Reference in New Issue