Skip to content

Commit 2e75d66

Browse files
authored
chore: update tested Python versions (#167)
1 parent 7091c49 commit 2e75d66

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Install Python
11-
uses: actions/setup-python@v4
11+
uses: actions/setup-python@v6
1212
with:
13-
python-version: "3.12"
13+
python-version: "3.14"
1414

1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v5
1717
with:
1818
lfs: true
1919

@@ -29,20 +29,20 @@ jobs:
2929
strategy:
3030
matrix:
3131
python-version:
32-
- '3.8'
33-
- '3.9'
3432
- '3.10'
3533
- '3.11'
3634
- '3.12'
35+
- '3.13'
36+
- '3.14'
3737

3838
steps:
3939
- name: Install Python
40-
uses: actions/setup-python@v4
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: "${{ matrix.python-version }}"
4343

4444
- name: Checkout repository
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v5
4646
with:
4747
lfs: true
4848

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ def parse_requirements(path):
4949
"Natural Language :: English",
5050
"Topic :: Scientific/Engineering :: Bio-Informatics",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.8",
53-
"Programming Language :: Python :: 3.9",
5452
"Programming Language :: Python :: 3.10",
5553
"Programming Language :: Python :: 3.11",
54+
"Programming Language :: Python :: 3.12",
55+
"Programming Language :: Python :: 3.13",
56+
"Programming Language :: Python :: 3.14",
5657
],
5758
entry_points={
5859
"console_scripts": (

0 commit comments

Comments
 (0)