Skip to content

Commit 5d7c790

Browse files
committed
Add python 3.14 support
1 parent 8a0fdc8 commit 5d7c790

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 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.8', '3.9', '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 }}
@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ubuntu-latest
9292
strategy:
9393
matrix:
94-
python-version: ['3.12']
94+
python-version: ['3.14']
9595
steps:
9696
- uses: actions/checkout@v3
9797
- name: Set up Python ${{ matrix.python-version }}

cert_chain_resolver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import sys
22

3-
__version__ = "1.4.0"
3+
__version__ = "1.4.1"
44
__is_py3__ = sys.version_info >= (3, 0)

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@
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",
4037
"Programming Language :: Python :: 3.8",
4138
"Programming Language :: Python :: 3.9",
4239
"Programming Language :: Python :: 3.10",
4340
"Programming Language :: Python :: 3.11",
4441
"Programming Language :: Python :: 3.12",
4542
"Programming Language :: Python :: 3.13",
43+
"Programming Language :: Python :: 3.14",
4644
"License :: OSI Approved :: MIT License",
4745
"Operating System :: OS Independent",
4846
],

0 commit comments

Comments
 (0)