Skip to content

Commit 19b5d33

Browse files
authored
release v1.1.2 (#649)
1 parent 0f3c4be commit 19b5d33

File tree

6 files changed

+23
-20
lines changed

6 files changed

+23
-20
lines changed

.github/workflows/wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
make cython
3030
3131
- name: Build
32-
uses: pypa/cibuildwheel@v3.1.1
32+
uses: pypa/cibuildwheel@v3.2.0
3333
env:
3434
CIBW_TEST_REQUIRES: "pytest"
3535
CIBW_TEST_COMMAND: "pytest {package}/test"

ChangeLog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
1.1.2
2+
=====
3+
4+
Release Date: 2025-10-08
5+
6+
This release does not change source code. It updates only building wheels:
7+
8+
* Update Cython to v3.1.4
9+
* Update cibuildwheel to v3.2.0
10+
* Drop Python 3.8
11+
* Add Python 3.14
12+
* Add windows-arm
13+
114
1.1.1
215
=====
316

msgpack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from .exceptions import * # noqa: F403
55
from .ext import ExtType, Timestamp
66

7-
version = (1, 1, 1)
8-
__version__ = "1.1.1"
7+
version = (1, 1, 2)
8+
__version__ = "1.1.2"
99

1010

1111
if os.environ.get("MSGPACK_PUREPYTHON"):

pyproject.toml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,21 @@
11
[build-system]
2-
# 75.3.0 is the latest version supporting Python 3.8
3-
requires = ["setuptools >= 75.3.0"]
2+
requires = ["setuptools >= 80.9.0"]
43
build-backend = "setuptools.build_meta"
54

65
[project]
76
name = "msgpack"
87
dynamic = ["version"]
9-
# `license = "Apache-2.0"` is preferred. But keep old syntax for Python 3.8 compatibility.
10-
# https://github.com/msgpack/msgpack-python/pull/637
11-
license = {text="Apache 2.0"}
8+
license = "Apache-2.0"
129
authors = [{name="Inada Naoki", email="[email protected]"}]
1310
description = "MessagePack serializer"
1411
readme = "README.md"
1512
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
16-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1714
classifiers = [
1815
"Development Status :: 5 - Production/Stable",
1916
"Operating System :: OS Independent",
2017
"Topic :: File Formats",
2118
"Intended Audience :: Developers",
22-
"Programming Language :: Python :: 3.8",
23-
"Programming Language :: Python :: 3.9",
24-
"Programming Language :: Python :: 3.10",
25-
"Programming Language :: Python :: 3.11",
26-
"Programming Language :: Python :: 3.12",
27-
"Programming Language :: Python :: 3.13",
28-
"Programming Language :: Python :: 3.14",
2919
"Programming Language :: Python :: Implementation :: CPython",
3020
"Programming Language :: Python :: Implementation :: PyPy",
3121
]
@@ -46,7 +36,7 @@ version = {attr = "msgpack.__version__"}
4636

4737
[tool.ruff]
4838
line-length = 100
49-
target-version = "py38"
39+
target-version = "py39"
5040
lint.select = [
5141
"E", # pycodestyle
5242
"F", # Pyflakes

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Cython~=3.1.2
1+
Cython==3.1.4

test/test_buffer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_unpack_bytearray():
1717
obj = unpackb(buf, use_list=1)
1818
assert [b"foo", b"bar"] == obj
1919
expected_type = bytes
20-
assert all(type(s) == expected_type for s in obj)
20+
assert all(type(s) is expected_type for s in obj)
2121

2222

2323
def test_unpack_memoryview():
@@ -26,7 +26,7 @@ def test_unpack_memoryview():
2626
obj = unpackb(view, use_list=1)
2727
assert [b"foo", b"bar"] == obj
2828
expected_type = bytes
29-
assert all(type(s) == expected_type for s in obj)
29+
assert all(type(s) is expected_type for s in obj)
3030

3131

3232
def test_packer_getbuffer():

0 commit comments

Comments
 (0)