Skip to content

Commit 4cf4675

Browse files
committed
Add support for Python 3.14
1 parent d1ffa8c commit 4cf4675

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest, macos-latest]
19-
python-version: ['3.11', '3.13'] # the one we have in the Codespace + the latest supported one by PyO3.
19+
python-version: ['3.11', '3.14'] # the one we have in the Codespace + the latest supported one by PyO3.
2020
fail-fast: false # Continue testing other version(s) if one fails
2121

2222
steps:

.github/workflows/publish-to-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3434
with:
35-
python-version: "3.13"
35+
python-version: "3.14"
3636

3737
- name: Install Hatch
3838
run: pip install --upgrade hatch

.github/workflows/publish-to-testpypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3131
with:
32-
python-version: "3.13"
32+
python-version: "3.14"
3333

3434
- name: Install Hatch
3535
run: pip install --upgrade hatch

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "seclab-taskflows"
77
dynamic = ["version"]
88
description = 'Example taskflows to use with the the GitHub Security Lab Taskflow Agent Framework (https://github.com/GitHubSecurityLab/seclab-taskflow-agent)'
99
readme = "README.md"
10-
requires-python = ">=3.10"
10+
requires-python = ">=3.11"
1111
license = "MIT"
1212
keywords = []
1313
authors = [
@@ -16,9 +16,10 @@ authors = [
1616
classifiers = [
1717
"Development Status :: 4 - Beta",
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
"Programming Language :: Python :: Implementation :: CPython",
2324
"Programming Language :: Python :: Implementation :: PyPy",
2425
]

0 commit comments

Comments
 (0)