Skip to content

Commit

Permalink
Version 0.27.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Aug 21, 2024
1 parent 61f184a commit 22b6670
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 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.27.0.dev0
export PYODIDE_VERSION ?= 0.27.0a2
export PYODIDE_ABI_VERSION ?= 2024_0

export PYTHON_ARCHIVE_SHA256=d01ec6a33bc10009b09c17da95cc2759af5a580a7316b3a446eb4190e13f97b2
Expand Down
2 changes: 2 additions & 0 deletions packages/scipy/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ build:
# pyodide-build/pyodide_build/_f2c_fixes.py.
script: |
set -x
export PIP_CONSTRAINT=$(pwd)/../../pip-constraint.txt
git clone https://github.com/hoodmane/f2c.git --depth 1
(cd f2c/src && cp makefile.u makefile && sed -i "s/gram.c:/gram.c1:/" makefile && make)
export F2C_PATH=$(pwd)/f2c/src/f2c
Expand Down
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.27.0.dev0";
API.version = "0.27.0a2";
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.27.0-dev.0",
"version": "0.27.0-alpha.2",
"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.27.0.dev0";
export const version: string = "0.27.0a2";
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.27.0.dev0"
__version__ = "0.27.0a2"

__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.27.0.dev0"
version = "0.27.0a2"
authors = [{name = "Pyodide developers"}]
description = "A Python package providing core interpreter functionality for Pyodide"
classifiers = [
Expand Down

0 comments on commit 22b6670

Please sign in to comment.