Skip to content

Commit

Permalink
v0.23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Jul 7, 2023
1 parent 86d1139 commit 25b404e
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/project/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ list from there with "The Pyodide development team" like in the example below:
month = aug,
year = 2021,
publisher = {Zenodo},
version = {0.23.3},
version = {0.23.4},
doi = {10.5281/zenodo.5156931},
url = {https://doi.org/10.5281/zenodo.5156931}
}
Expand Down
2 changes: 2 additions & 0 deletions docs/project/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ myst:

## Version 0.23.4

_July 6, 2023_

- {{ Enhancement }} The environment variable `PYODIDE_BUILD_EXPORTS` can now be
used instead of the `--exports` argument to `pyodide build` to specify `.so`
file exports of packages.
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.23.3"
__version__ = "0.23.4"
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.23.3";
API.version = "0.23.4";
Module.hiwire = Hiwire;
function getTypeTag(x) {
try {
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.23.3",
"version": "0.23.4",
"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.23.3";
export const version: string = "0.23.4";
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.23.3"
__version__ = "0.23.4"

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

Expand Down
2 changes: 1 addition & 1 deletion src/py/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyodide-py
version = 0.23.3
version = 0.23.4
author = Pyodide developers
description = "A Python package providing core interpreter functionality for Pyodide."
long_description = file: README.md
Expand Down
1 change: 0 additions & 1 deletion src/tests/test_pyproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,6 @@ async def test_multiple_interpreters(selenium):
assert d2.toJs().to_py() == d1



def test_pyproxy_instanceof_function(selenium):
weird_function_shim = ""
if selenium.browser in ["firefox", "node"]:
Expand Down

0 comments on commit 25b404e

Please sign in to comment.