Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Merge branch 'main' into nogil
  • Loading branch information
methane authored Oct 9, 2025
commit 80191651eb3ca9c20b78d24a0fc6b01a12f1cb51
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
test:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
py: ["3.14", "3.14t", "3.13", "3.13t", "3.12", "3.11", "3.10", "3.9"]
os: ["ubuntu-latest", "windows-latest", "windows-11-arm", "macos-latest"]
py: ["3.14", "3.14t", "3.13", "3.12", "3.11", "3.10"]
exclude:
- os: windows-11-arm
py: "3.10"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"
CIBW_SKIP: "pp* cp38-* cp39-win_arm64 cp310-win_arm64"
CIBW_ENABLE: cpython-freethreading
CIBW_SKIP: "pp* cp38-* cp39-* cp310-win_arm64"

- name: Build sdist
if: runner.os == 'Linux' && runner.arch == 'X64'
Expand Down
5 changes: 3 additions & 2 deletions msgpack/_cmsgpack.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# coding: utf-8
# cython: embedsignature=True, c_string_encoding=ascii, language_level=3, freethreading_compatible=True
#cython: embedsignature=True, c_string_encoding=ascii, language_level=3
#cython: freethreading_compatible = True
import cython
from cpython.datetime cimport import_datetime, datetime_new
import_datetime()

Expand Down
2 changes: 0 additions & 2 deletions msgpack/_packer.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8
# cython: freethreading_compatible = True
from cpython cimport *
from cpython.bytearray cimport PyByteArray_Check, PyByteArray_CheckExact
from cpython.datetime cimport (
Expand Down
2 changes: 0 additions & 2 deletions msgpack/_unpacker.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8
# cython: freethreading_compatible = True
from cpython cimport *
cdef extern from "Python.h":
ctypedef struct PyObject
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.