Skip to content

Commit

Permalink
Merge pull request #855 from azmeuk/py313
Browse files Browse the repository at this point in the history
stop support for python 3.8 and start support for 3.13
  • Loading branch information
azmeuk authored Oct 11, 2024
2 parents e8621d7 + e79787c commit f4903ad
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
fail-fast: false
matrix:
python:
- '3.13'
- '3.12'
- '3.11'
- '3.10'
- '3.9'
- '3.8'
- 'pypy-3.10'
steps:
- uses: actions/checkout@v2
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.12'
python-version: '3.13'
- uses: actions/cache@v1
with:
path: ~/.cache/pip
Expand All @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.12'
python-version: '3.13'
- uses: actions/cache@v1
with:
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repos:
rev: v3.13.0
hooks:
- id: pyupgrade
args: ["--py38-plus"]
args: ["--py39-plus"]
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.11.0
hooks:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Released 2024-01-06
- Fix :class:`~fields.SelectMultipleField` value coercion on validation.
:issue:`822` :pr:`823`
- Move the repository to the pallets-eco organization.
- Stop supporting Python 3.9 and start supporting Python 3.13 :pr:`855`

Version 3.1.1
-------------
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ you should have no unicode issues.
What versions of Python are supported?
--------------------------------------

WTForms supports Python 3.8+
WTForms supports Python 3.9+


How can I contribute to WTForms?
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classifiers = [
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"MarkupSafe",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
style
py{312,311,310,39,38,py3}
py{313,312,311,310,39,py3}
docs
skip_missing_interpreters = true

Expand Down

0 comments on commit f4903ad

Please sign in to comment.