From 97be986d34731c380efcd781582fc34f0f723b57 Mon Sep 17 00:00:00 2001 From: c-bata Date: Sat, 28 Mar 2026 11:46:17 +0900 Subject: [PATCH] Update the supported Python versions to 3.9-3.14 --- .github/workflows/tests.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c092c7..7659f51 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - name: Setup Python${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 5887b44..fd7bbb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ maintainers = [ { name = "Masahiro Nomura", "email" = "masahironomura5325@gmail.com" }, { name = "Ryoki Hamano", "email" = "hamano_ryoki_xa@cyberagent.co.jp" } ] -requires-python = ">=3.8" +requires-python = ">=3.9" license = {file = "LICENSE"} classifiers = [ "Development Status :: 4 - Beta", @@ -21,12 +21,12 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: 3 :: Only", "Intended Audience :: Science/Research", ]