Skip to content

Commit 896e98e

Browse files
authored
Merge pull request #587 from AllenInstitute/update-supported-python-versions
.github/workflows: Use latest stable version of python 3.14 and drop support for python 3.9
2 parents e9d33b4 + 8e3ba32 commit 896e98e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/github-actions-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]
23+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2424

2525
steps:
2626
- uses: actions/checkout@v3
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ["self-hosted"]
5454
strategy:
5555
matrix:
56-
pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-rc"]
56+
pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"]
5757
steps:
5858
- uses: actions/checkout@v4
5959
- name: Build docker image

.github/workflows/nightly-onprem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ["self-hosted"]
1111
strategy:
1212
matrix:
13-
pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-rc"]
13+
pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Build docker image

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
{ name = "Allen Institute for Brain Science", email = "[email protected]" },
1414
]
1515

16-
requires-python = ">= 3.9"
16+
requires-python = ">= 3.10"
1717

1818
keywords = [
1919
"bioinformatics",
@@ -27,7 +27,6 @@ classifiers = [
2727
"License :: Other/Proprietary License",
2828
"Natural Language :: English",
2929
"Operating System :: OS Independent",
30-
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",
3332
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)