update Cython to 3.1.1 (#637)

This commit is contained in:
Inada Naoki 2025-05-31 12:45:06 +09:00 committed by GitHub
parent 0eeabfb453
commit 868aa2cd83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 8 deletions

View file

@ -10,7 +10,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"] os: ["ubuntu-latest", "windows-latest", "macos-latest"]
py: ["3.13-dev", "3.12", "3.11", "3.10", "3.9", "3.8"] py: ["3.14-dev", "3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
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 }}
@ -26,10 +26,15 @@ jobs:
allow-prereleases: true allow-prereleases: true
cache: "pip" cache: "pip"
- name: Prepare
shell: bash
run: |
pip install -U pip
pip install -r requirements.txt pytest
- name: Build - name: Build
shell: bash shell: bash
run: | run: |
pip install -r requirements.txt pytest
make cython make cython
pip install . pip install .

View file

@ -1,10 +1,13 @@
[build-system] [build-system]
requires = ["setuptools >= 69.5.1"] # 75.3.0 is the latest version supporting Python 3.8
requires = ["setuptools >= 75.3.0"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
name = "msgpack" name = "msgpack"
dynamic = ["version"] dynamic = ["version"]
# `license = "Apache-2.0"` is preferred. But keep old syntax for Python 3.8 compatibility.
# https://github.com/msgpack/msgpack-python/pull/637
license = {text="Apache 2.0"} license = {text="Apache 2.0"}
authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}] authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}]
description = "MessagePack serializer" description = "MessagePack serializer"
@ -14,18 +17,17 @@ requires-python = ">=3.8"
classifiers = [ classifiers = [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Topic :: File Formats",
"Programming Language :: Python :: 3", "Intended Audience :: Developers",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
] ]
[project.urls] [project.urls]

View file

@ -1 +1 @@
Cython~=3.0.11 Cython~=3.1.1