mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-11-11 15:01:06 +00:00
drop Py 3.8 support and add 3.14-dev to matrix
This commit is contained in:
parent
e15703fc6d
commit
5ad03a578d
2 changed files with 4 additions and 6 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -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"]
|
||||||
|
|
||||||
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 }}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
# 75.3.0 is the latest version supporting Python 3.8
|
requires = ["setuptools >= v80.9.0"]
|
||||||
requires = ["setuptools >= 75.3.0"]
|
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
|
|
@ -11,13 +10,12 @@ authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}]
|
||||||
description = "MessagePack serializer"
|
description = "MessagePack serializer"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
|
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.9"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"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",
|
||||||
|
|
@ -45,7 +43,7 @@ version = {attr = "msgpack.__version__"}
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 100
|
line-length = 100
|
||||||
target-version = "py38"
|
target-version = "py39"
|
||||||
lint.select = [
|
lint.select = [
|
||||||
"E", # pycodestyle
|
"E", # pycodestyle
|
||||||
"F", # Pyflakes
|
"F", # Pyflakes
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue