From 920b986f4911cffe94a3677417c1ed7040ea91a5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:05:20 +0000 Subject: [PATCH 1/2] Initial plan From 0c94294aba2934766cb750ffbb625db3cd122b9d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:09:48 +0000 Subject: [PATCH 2/2] Add Python 3.14 support to setup.py, CI/CD workflow, and README Co-authored-by: nikdon <4712507+nikdon@users.noreply.github.com> --- .github/workflows/python-package.yml | 2 +- README.md | 1 + setup.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index d191ac3..31cd386 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["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@v5 diff --git a/README.md b/README.md index ecc6bb6..9c0c565 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ ![py311 status](https://img.shields.io/badge/python3.11-supported-green.svg) ![py312 status](https://img.shields.io/badge/python3.12-supported-green.svg) ![py313 status](https://img.shields.io/badge/python3.13-supported-green.svg) +![py314 status](https://img.shields.io/badge/python3.14-supported-green.svg) 1. [Quick start](#quick-start) 2. [Usage](#usage) diff --git a/setup.py b/setup.py index 25d2532..e556ff1 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,7 @@ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics",