Switch version to 0.27 development

This commit is contained in:
Hood Chatham 2024-05-27 11:27:46 -07:00
parent 14a637d7c5
commit 868ee36ef5
9 changed files with 13 additions and 9 deletions

View File

@ -8,6 +8,10 @@ version: 2
sphinx:
configuration: docs/conf.py
formats:
- htmlzip
# we can't build epub / pdf
python:
install:
- requirements: docs/requirements-doc.txt

View File

@ -1,6 +1,6 @@
export PYVERSION ?= 3.12.1
export PYODIDE_EMSCRIPTEN_VERSION ?= 3.1.58
export PYODIDE_VERSION ?= 0.26.0
export PYODIDE_VERSION ?= 0.27.0.dev0
export PYODIDE_ABI_VERSION ?= 2024_0
export PYTHON_ARCHIVE_SHA256=d01ec6a33bc10009b09c17da95cc2759af5a580a7316b3a446eb4190e13f97b2

View File

@ -1 +1 @@
__version__ = "0.26.0"
__version__ = "0.27.0.dev0"

View File

@ -2,7 +2,7 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.26.0";
API.version = "0.27.0.dev0";
Module.hiwire = Hiwire;
function getTypeTag(x) {

View File

@ -1,12 +1,12 @@
{
"name": "pyodide",
"version": "0.26.0",
"version": "0.27.0-dev.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pyodide",
"version": "0.26.0",
"version": "0.27.0-dev.0",
"license": "Apache-2.0",
"dependencies": {
"ws": "^8.5.0"

View File

@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.26.0",
"version": "0.27.0-dev.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.26.0";
export const version: string = "0.27.0.dev0";

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

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pyodide-py"
version = "0.26.0"
version = "0.27.0.dev0"
authors = [{name = "Pyodide developers"}]
description = "A Python package providing core interpreter functionality for Pyodide"
classifiers = [