Skip to content

Commit d785e8d

Browse files
committed
chore: add python 3.14 and remove 3.9 support
1 parent 22d1b05 commit d785e8d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1212
with:
1313
persist-credentials: false
14-
- name: Setup python 3.13
14+
- name: Setup python 3.14
1515
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
1616
with:
17-
python-version: '3.13'
17+
python-version: '3.14'
1818
cache: 'pip'
1919
- name: Install deps
2020
run: pip install -r requirements-docs.txt

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
test:
1717
strategy:
1818
matrix:
19-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
19+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
2020
runs-on: ubuntu-latest
2121
services:
2222
couchdb:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["flit_core >=3.9,<4"]
2+
requires = ["flit_core >=3.10,<4"]
33
build-backend = "flit_core.buildapi"
44

55
[project]
@@ -16,16 +16,16 @@ authors = [
1616
{ name="IBM", email="cldtsdks@us.ibm.com" },
1717
]
1818
readme = "README.md"
19-
requires-python = ">=3.9"
19+
requires-python = ">=3.10"
2020
license = {file = "LICENSE"}
2121
classifiers = [
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",
2827
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2929
"Development Status :: 5 - Production/Stable",
3030
"Intended Audience :: Developers",
3131
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)