Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions .github/workflows/build-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ jobs:
platform: macos-arm
target: aarch64-apple-darwin
python-version: '3.13'
- os: macos-latest
platform: macos-arm
target: aarch64-apple-darwin
python-version: '3.14'
- os: ubuntu-latest
platform: manylinux-x86_64
target: x86_64-unknown-linux-gnu
Expand All @@ -29,10 +25,6 @@ jobs:
platform: manylinux-x86_64
target: x86_64-unknown-linux-gnu
python-version: '3.13'
- os: ubuntu-latest
platform: manylinux-x86_64
target: x86_64-unknown-linux-gnu
python-version: '3.14'
- os: ubuntu-24.04-arm
platform: manylinux-aarch64
target: aarch64-unknown-linux-gnu
Expand All @@ -41,16 +33,12 @@ jobs:
platform: manylinux-aarch64
target: aarch64-unknown-linux-gnu
python-version: '3.13'
- os: ubuntu-24.04-arm
platform: manylinux-aarch64
target: aarch64-unknown-linux-gnu
python-version: '3.14'

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Changelog

## 3.10.14-post5

- no code changes, just added 3.14 to our wheel build.

## 3.10.14-post4

- fix handling for MagicMocks by checking torch tensor module name
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orjson"
version = "3.10.14-post5"
version = "3.10.14-post4"
authors = ["ijl <ijl@mailbox.org>", "nova <nova@anthropic.com>", "gbm <gbm@anthropic.com>", "catherio <catherio@anthropic.com>"]
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "orjson"
version = "3.10.14-post5"
version = "3.10.14-post4"
repository = "https://github.com/ijl/orjson"
requires-python = ">=3.8"
classifiers = [
Expand Down
Loading