Skip to content

Commit f46ce93

Browse files
committed
Adds support to Python 3.14
1 parent c12927d commit f46ce93

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: ["3.13", "3.12", "3.11", "3.10"]
11+
python: ["3.14", "3.13", "3.12", "3.11", "3.10"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: 3.11",
1414
"Programming Language :: Python :: 3.12",
1515
"Programming Language :: Python :: 3.13",
16+
"Programming Language :: Python :: 3.14",
1617
"Intended Audience :: Developers",
1718
"License :: OSI Approved :: MIT License",
1819
"Framework :: Flask",
@@ -67,7 +68,7 @@ addopts = "--ruff --ruff-format --cov flask_simplelogin --cov-report term --cov-
6768
legacy_tox_ini = """
6869
[tox]
6970
isolated_build = true
70-
envlist = py313, py312, py311, py310
71+
envlist = py314, py313, py312, py311, py310
7172
7273
[testenv]
7374
commands = uv run pytest

0 commit comments

Comments
 (0)