From 39b18927fcd1aea0592812fb9af0f6c5668d737c Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 4 Jun 2024 14:13:03 -0400 Subject: [PATCH 1/2] build: update supported python versions to 3.10-3.12 --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1816684..1e6d334 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -49,7 +49,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 235249d..6d7dd78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,12 +6,12 @@ authors = [ description = "miscellaneous simple bioinformatics utilities and lookup tables" readme = "README.rst" license = { file="LICENSE.txt" } -requires-python = ">=3.8" +requires-python = ">=3.10" classifiers = [ "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", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Bio-Informatics", From 95ad30df4f630c6884757742205cc77d6339dd02 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 4 Jun 2024 14:17:43 -0400 Subject: [PATCH 2/2] add tox --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8e4d4b6..bc3fea1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39,py310 +envlist = py310,py311,py312 isolated_build = True [testenv]