From 2a5ca84edd298a5f6845673dee24d3f1c20ed7ae Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Wed, 10 Dec 2025 15:23:42 +0100 Subject: [PATCH 1/2] .github/workflows: Use latest stable version of python 3.14 This is already released. --- .github/workflows/github-actions-ci.yml | 4 ++-- .github/workflows/nightly-onprem.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-ci.yml b/.github/workflows/github-actions-ci.yml index e18c8c2d..6c247a2c 100644 --- a/.github/workflows/github-actions-ci.yml +++ b/.github/workflows/github-actions-ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v3 @@ -53,7 +53,7 @@ jobs: runs-on: ["self-hosted"] strategy: matrix: - pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-rc"] + pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - name: Build docker image diff --git a/.github/workflows/nightly-onprem.yml b/.github/workflows/nightly-onprem.yml index 3bcf0d26..4536087a 100644 --- a/.github/workflows/nightly-onprem.yml +++ b/.github/workflows/nightly-onprem.yml @@ -10,7 +10,7 @@ jobs: runs-on: ["self-hosted"] strategy: matrix: - pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-rc"] + pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - name: Build docker image From 8e3ba320bc78e2fc7c13f1163e1ea86996d1b9b8 Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Wed, 10 Dec 2025 15:45:19 +0100 Subject: [PATCH 2/2] treewide: Drop support for python 3.9 This is out of support since Nov 1st 2025. --- .github/workflows/github-actions-ci.yml | 4 ++-- .github/workflows/nightly-onprem.yml | 2 +- pyproject.toml | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-actions-ci.yml b/.github/workflows/github-actions-ci.yml index 6c247a2c..e533a1b4 100644 --- a/.github/workflows/github-actions-ci.yml +++ b/.github/workflows/github-actions-ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v3 @@ -53,7 +53,7 @@ jobs: runs-on: ["self-hosted"] strategy: matrix: - pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - name: Build docker image diff --git a/.github/workflows/nightly-onprem.yml b/.github/workflows/nightly-onprem.yml index 4536087a..2931ef9d 100644 --- a/.github/workflows/nightly-onprem.yml +++ b/.github/workflows/nightly-onprem.yml @@ -10,7 +10,7 @@ jobs: runs-on: ["self-hosted"] strategy: matrix: - pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - name: Build docker image diff --git a/pyproject.toml b/pyproject.toml index 1843ffc7..6847d1e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ authors = [ { name = "Allen Institute for Brain Science", email = "Marmot@AllenInstitute.onmicrosoft.com" }, ] -requires-python = ">= 3.9" +requires-python = ">= 3.10" keywords = [ "bioinformatics", @@ -27,7 +27,6 @@ classifiers = [ "License :: Other/Proprietary License", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",