mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 12:03:15 +00:00
Release v1.1.0rc2 (#619)
This commit is contained in:
parent
9e26d80ab2
commit
9d0c7f2f9c
3 changed files with 11 additions and 3 deletions
2
.github/workflows/wheel.yml
vendored
2
.github/workflows/wheel.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
|||
CIBW_TEST_COMMAND: "pytest {package}/test"
|
||||
CIBW_ARCHS_LINUX: auto aarch64
|
||||
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
|
||||
CIBW_SKIP: pp*
|
||||
CIBW_SKIP: "pp* cp38-macosx_*"
|
||||
|
||||
- name: Build sdist
|
||||
if: runner.os == 'Linux'
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
1.1.0rc2
|
||||
========
|
||||
|
||||
Release Date: 2024-08-19
|
||||
|
||||
* Update Cython to 3.0.11 for better Python 3.13 support.
|
||||
* Update cibuildwheel to 2.20.0 to build Python 3.13 wheels.
|
||||
|
||||
1.1.0rc1
|
||||
========
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ import os
|
|||
from .exceptions import * # noqa: F403
|
||||
from .ext import ExtType, Timestamp
|
||||
|
||||
version = (1, 1, 0, "rc1")
|
||||
__version__ = "1.1.0rc1"
|
||||
version = (1, 1, 0, "rc2")
|
||||
__version__ = "1.1.0rc2"
|
||||
|
||||
|
||||
if os.environ.get("MSGPACK_PUREPYTHON"):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue