Skip to content

Commit 32dadb4

Browse files
committed
Fix macos wheel tag
1 parent 4442903 commit 32dadb4

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# History
22

3+
## 0.13.1 (2025-12-24)
4+
5+
- Fix MacOS wheels to not require MacOS 15.
6+
37
## 0.13.0 (2025-12-07)
48

59
- Upgrade to V8 14.3 from 12.6.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["setuptools>=80.9"]
44

55
[project]
66
name = "mini-racer"
7-
version = "0.13.0"
7+
version = "0.13.1"
88
dynamic = ["readme"]
99
description = "Minimal, modern embedded V8 for Python."
1010
license = "ISC"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _get_platform_tag() -> str:
1616
# generally return the first, meaning the most-specific, platform tag:
1717
tag = next(platform_tags())
1818

19-
if tag.startswith("macos_"):
19+
if tag.startswith("macosx_"):
2020
# pip seems finicky about platform tags with larger macos versions, so just
2121
# tell arm64 is 11.0 and everything is is 10.9:
2222
if tag.endswith("_arm64"):

src/py_mini_racer/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = "bpcreech"
44
__email__ = "mini-racer@bpcreech.com"
5-
__version__ = "0.13.0"
5+
__version__ = "0.13.1"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)