Skip to content

Commit 5ad03a5

Browse files
committed
drop Py 3.8 support and add 3.14-dev to matrix
1 parent e15703f commit 5ad03a5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
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"]
1414

1515
runs-on: ${{ matrix.os }}
1616
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[build-system]
2-
# 75.3.0 is the latest version supporting Python 3.8
3-
requires = ["setuptools >= 75.3.0"]
2+
requires = ["setuptools >= v80.9.0"]
43
build-backend = "setuptools.build_meta"
54

65
[project]
@@ -11,13 +10,12 @@ authors = [{name="Inada Naoki", email="[email protected]"}]
1110
description = "MessagePack serializer"
1211
readme = "README.md"
1312
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
14-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1514
classifiers = [
1615
"Development Status :: 5 - Production/Stable",
1716
"Operating System :: OS Independent",
1817
"Programming Language :: Python",
1918
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2119
"Programming Language :: Python :: 3.9",
2220
"Programming Language :: Python :: 3.10",
2321
"Programming Language :: Python :: 3.11",
@@ -45,7 +43,7 @@ version = {attr = "msgpack.__version__"}
4543

4644
[tool.ruff]
4745
line-length = 100
48-
target-version = "py38"
46+
target-version = "py39"
4947
lint.select = [
5048
"E", # pycodestyle
5149
"F", # Pyflakes

0 commit comments

Comments
 (0)