Skip to content

Commit f4903ad

Browse files
authored
Merge pull request #855 from azmeuk/py313
stop support for python 3.8 and start support for 3.13
2 parents e8621d7 + e79787c commit f4903ad

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
python:
20+
- '3.13'
2021
- '3.12'
2122
- '3.11'
2223
- '3.10'
2324
- '3.9'
24-
- '3.8'
2525
- 'pypy-3.10'
2626
steps:
2727
- uses: actions/checkout@v2
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v2
4141
- uses: actions/setup-python@v2
4242
with:
43-
python-version: '3.12'
43+
python-version: '3.13'
4444
- uses: actions/cache@v1
4545
with:
4646
path: ~/.cache/pip
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v2
5858
- uses: actions/setup-python@v2
5959
with:
60-
python-version: '3.12'
60+
python-version: '3.13'
6161
- uses: actions/cache@v1
6262
with:
6363
path: ~/.cache/pip

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repos:
44
rev: v3.13.0
55
hooks:
66
- id: pyupgrade
7-
args: ["--py38-plus"]
7+
args: ["--py39-plus"]
88
- repo: https://github.com/asottile/reorder_python_imports
99
rev: v3.11.0
1010
hooks:

CHANGES.rst

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Released 2024-01-06
88
- Fix :class:`~fields.SelectMultipleField` value coercion on validation.
99
:issue:`822` :pr:`823`
1010
- Move the repository to the pallets-eco organization.
11+
- Stop supporting Python 3.9 and start supporting Python 3.13 :pr:`855`
1112

1213
Version 3.1.1
1314
-------------

docs/faq.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ you should have no unicode issues.
5757
What versions of Python are supported?
5858
--------------------------------------
5959

60-
WTForms supports Python 3.8+
60+
WTForms supports Python 3.9+
6161

6262

6363
How can I contribute to WTForms?

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
"Programming Language :: Python",
1414
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
1515
]
16-
requires-python = ">=3.8"
16+
requires-python = ">=3.9"
1717
dependencies = [
1818
"MarkupSafe",
1919
]

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
style
4-
py{312,311,310,39,38,py3}
4+
py{313,312,311,310,39,py3}
55
docs
66
skip_missing_interpreters = true
77

0 commit comments

Comments
 (0)