Skip to content

Commit 466d21b

Browse files
authored
chore: support python 3.14 (#61)
* chore: support python 3.14 * upver deps
1 parent 796de98 commit 466d21b

File tree

4 files changed

+1328
-1369
lines changed

4 files changed

+1328
-1369
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
32-
python-version: ["3.10", "3.11", "3.12", "3.13"]
32+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3333
fail-fast: false
3434
defaults:
3535
run:

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,18 @@ classifiers = [
1414
"Programming Language :: Python :: 3.11",
1515
"Programming Language :: Python :: 3.12",
1616
"Programming Language :: Python :: 3.13",
17+
"Programming Language :: Python :: 3.14",
1718
"Topic :: Software Development :: Libraries :: Python Modules",
1819
]
1920
dependencies = [
2021
"aioimaplib>=2.0.1",
2122
"aiosmtplib>=4.0.0",
22-
"gradio>=5.18.0",
23+
"gradio>=6.0.1",
2324
"jinja2>=3.1.5",
2425
"loguru>=0.7.3",
2526
"mcp[cli]>=1.3.0",
26-
"pydantic>=2.10.6",
27-
"pydantic-settings[toml]>=2.8.0",
27+
"pydantic>=2.11.0",
28+
"pydantic-settings[toml]>=2.11.0",
2829
"tomli-w>=1.2.0",
2930
"typer>=0.15.1",
3031
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python =
88
3.11: py311
99
3.12: py312
1010
3.13: py313
11-
; 3.14: py314
11+
3.14: py314
1212

1313
[testenv]
1414
passenv = PYTHON_VERSION

0 commit comments

Comments
 (0)