From 3bf32bc0f882cbe91907b26179bfb8b9c03d37fb Mon Sep 17 00:00:00 2001 From: Scott Lowe Date: Fri, 11 Feb 2022 10:38:02 +0000 Subject: [PATCH 1/2] CI: Test on Python 3.10 --- .github/workflows/test-release-candidate.yaml | 2 +- .github/workflows/test.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-release-candidate.yaml b/.github/workflows/test-release-candidate.yaml index 3c447d78..705f206f 100644 --- a/.github/workflows/test-release-candidate.yaml +++ b/.github/workflows/test-release-candidate.yaml @@ -52,7 +52,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"] + python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] include: - os: macos-latest python-version: "2.7" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6d3e8208..221ee588 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,10 +27,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["2.7", "3.5", "3.9"] + python-version: ["2.7", "3.5", "3.10"] include: - os: windows-latest - python-version: "3.9" + python-version: "3.10" env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} From b6ba41a120c8db52174728e2701675095e144ee1 Mon Sep 17 00:00:00 2001 From: Scott Lowe Date: Fri, 11 Feb 2022 10:38:47 +0000 Subject: [PATCH 2/2] DOC: Add Python 3.10 to the PyPI classifiers --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 638e36a5..b90befc7 100755 --- a/setup.py +++ b/setup.py @@ -78,6 +78,7 @@ def run_tests(self): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Information Analysis",