mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 20:03:16 +00:00
Release v1.0.5rc1 (#528)
This commit is contained in:
parent
b82d0b62f1
commit
1008229553
5 changed files with 17 additions and 8 deletions
4
.github/workflows/black.yaml
vendored
4
.github/workflows/black.yaml
vendored
|
@ -11,13 +11,13 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
architecture: 'x64'
|
architecture: 'x64'
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Black Code Formatter
|
- name: Black Code Formatter
|
||||||
run: |
|
run: |
|
||||||
|
|
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
@ -9,8 +9,8 @@ jobs:
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04, windows-2022, macos-10.15]
|
os: [ubuntu-22.04, windows-2022, macos-10.15]
|
||||||
py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
|
py: ["3.11", "3.10", "3.9", "3.8", "3.7"]
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
|
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
|
||||||
|
@ -20,7 +20,7 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v3
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.py }}
|
python-version: ${{ matrix.py }}
|
||||||
cache: "pip"
|
cache: "pip"
|
||||||
|
|
2
.github/workflows/wheel.yml
vendored
2
.github/workflows/wheel.yml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
||||||
make cython
|
make cython
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: pypa/cibuildwheel@v2.9.0
|
uses: pypa/cibuildwheel@v2.12.0
|
||||||
env:
|
env:
|
||||||
CIBW_TEST_REQUIRES: "pytest"
|
CIBW_TEST_REQUIRES: "pytest"
|
||||||
CIBW_TEST_COMMAND: "pytest {package}/test"
|
CIBW_TEST_COMMAND: "pytest {package}/test"
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
1.0.5rc1
|
||||||
|
========
|
||||||
|
|
||||||
|
Release Date: 2023-01-18
|
||||||
|
|
||||||
|
* Use ``__BYTE_ORDER__`` instead of ``__BYTE_ORDER`` for portability. (#513, #514)
|
||||||
|
* Add Python 3.11 wheels (#517)
|
||||||
|
* fallback: Fix packing multidimensional memoryview (#527)
|
||||||
|
|
||||||
1.0.4
|
1.0.4
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
version = (1, 0, 4)
|
version = (1, 0, 5, 'rc', 1)
|
||||||
__version__ = "1.0.4"
|
__version__ = "1.0.5rc1"
|
||||||
|
|
||||||
|
|
||||||
if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2:
|
if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue