Skip to content

Commit 868aa2c

Browse files
authored
update Cython to 3.1.1 (#637)
1 parent 0eeabfb commit 868aa2c

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
13-
py: ["3.13-dev", "3.12", "3.11", "3.10", "3.9", "3.8"]
13+
py: ["3.14-dev", "3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
1414

1515
runs-on: ${{ matrix.os }}
1616
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
@@ -26,10 +26,15 @@ jobs:
2626
allow-prereleases: true
2727
cache: "pip"
2828

29-
- name: Build
29+
- name: Prepare
3030
shell: bash
3131
run: |
32+
pip install -U pip
3233
pip install -r requirements.txt pytest
34+
35+
- name: Build
36+
shell: bash
37+
run: |
3338
make cython
3439
pip install .
3540

pyproject.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[build-system]
2-
requires = ["setuptools >= 69.5.1"]
2+
# 75.3.0 is the latest version supporting Python 3.8
3+
requires = ["setuptools >= 75.3.0"]
34
build-backend = "setuptools.build_meta"
45

56
[project]
67
name = "msgpack"
78
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
811
license = {text="Apache 2.0"}
912
authors = [{name="Inada Naoki", email="[email protected]"}]
1013
description = "MessagePack serializer"
@@ -14,18 +17,17 @@ requires-python = ">=3.8"
1417
classifiers = [
1518
"Development Status :: 5 - Production/Stable",
1619
"Operating System :: OS Independent",
17-
"Programming Language :: Python",
18-
"Programming Language :: Python :: 3",
20+
"Topic :: File Formats",
21+
"Intended Audience :: Developers",
1922
"Programming Language :: Python :: 3.8",
2023
"Programming Language :: Python :: 3.9",
2124
"Programming Language :: Python :: 3.10",
2225
"Programming Language :: Python :: 3.11",
2326
"Programming Language :: Python :: 3.12",
2427
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2529
"Programming Language :: Python :: Implementation :: CPython",
2630
"Programming Language :: Python :: Implementation :: PyPy",
27-
"Intended Audience :: Developers",
28-
"License :: OSI Approved :: Apache Software License",
2931
]
3032

3133
[project.urls]

requirements.txt

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

0 commit comments

Comments
 (0)