Skip to content

Commit 29e2670

Browse files
authored
Add 3.14 wheels, call this -post5
not adding free-threading builds yet, need to work out when upstream is actually ready for that.
2 parents 0de39d1 + 0e29bce commit 29e2670

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

.github/workflows/build-wheels.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
platform: macos-arm
1818
target: aarch64-apple-darwin
1919
python-version: '3.13'
20+
- os: macos-latest
21+
platform: macos-arm
22+
target: aarch64-apple-darwin
23+
python-version: '3.14'
2024
- os: ubuntu-latest
2125
platform: manylinux-x86_64
2226
target: x86_64-unknown-linux-gnu
@@ -25,6 +29,10 @@ jobs:
2529
platform: manylinux-x86_64
2630
target: x86_64-unknown-linux-gnu
2731
python-version: '3.13'
32+
- os: ubuntu-latest
33+
platform: manylinux-x86_64
34+
target: x86_64-unknown-linux-gnu
35+
python-version: '3.14'
2836
- os: ubuntu-24.04-arm
2937
platform: manylinux-aarch64
3038
target: aarch64-unknown-linux-gnu
@@ -33,12 +41,16 @@ jobs:
3341
platform: manylinux-aarch64
3442
target: aarch64-unknown-linux-gnu
3543
python-version: '3.13'
44+
- os: ubuntu-24.04-arm
45+
platform: manylinux-aarch64
46+
target: aarch64-unknown-linux-gnu
47+
python-version: '3.14'
3648

3749
steps:
3850
- uses: actions/checkout@v4
3951

4052
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v5
53+
uses: actions/setup-python@v6
4254
with:
4355
python-version: ${{ matrix.python-version }}
4456

CHANGELOG.md

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

3+
## 3.10.14-post5
4+
5+
- no code changes, just added 3.14 to our wheel build.
6+
37
## 3.10.14-post4
48

59
- fix handling for MagicMocks by checking torch tensor module name

Cargo.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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orjson"
3-
version = "3.10.14-post4"
3+
version = "3.10.14-post5"
44
authors = ["ijl <ijl@mailbox.org>", "nova <nova@anthropic.com>", "gbm <gbm@anthropic.com>", "catherio <catherio@anthropic.com>"]
55
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
66
edition = "2021"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "orjson"
3-
version = "3.10.14-post4"
3+
version = "3.10.14-post5"
44
repository = "https://github.com/ijl/orjson"
55
requires-python = ">=3.8"
66
classifiers = [

0 commit comments

Comments
 (0)