Skip to content

Commit 235ddbf

Browse files
committed
Add python 3.14 support
1 parent 8a0fdc8 commit 235ddbf

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
Test-python-27:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
container:
1515
image: python:2.7.18-buster
1616
steps:
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
37+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
3838
steps:
3939
- uses: actions/checkout@v4
4040
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,11 @@
3434
classifiers=[
3535
"Programming Language :: Python :: 2.7",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.5",
38-
"Programming Language :: Python :: 3.6",
39-
"Programming Language :: Python :: 3.7",
40-
"Programming Language :: Python :: 3.8",
41-
"Programming Language :: Python :: 3.9",
4237
"Programming Language :: Python :: 3.10",
4338
"Programming Language :: Python :: 3.11",
4439
"Programming Language :: Python :: 3.12",
4540
"Programming Language :: Python :: 3.13",
41+
"Programming Language :: Python :: 3.14",
4642
"License :: OSI Approved :: MIT License",
4743
"Operating System :: OS Independent",
4844
],

0 commit comments

Comments
 (0)