Skip to content

Commit

Permalink
Stop support python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Dec 23, 2021
1 parent ce4e26f commit eba420c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
- '3.9'
- '3.8'
- '3.7'
- '3.6'
- pypy3
- 'pypy-3.7'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
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: v2.29.1
hooks:
- id: pyupgrade
args: ["--py36-plus"]
args: ["--py37-plus"]
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.6.0
hooks:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Unreleased

- Fixed :class:`~fields.DateTimeField` and other similar fields can
handle multiple formats. :issue:`720` :pr:`721`
- Stop support for python 3.6 :pr:`722`

Version 3.0.0
-------------
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.6+
WTForms supports Python 3.7+


How can I contribute to WTForms?
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers =
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.6
python_requires = >= 3.7
setup_requires = Babel >= 2.6.0
install_requires = 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{310,39,38,37,36,py3}
py{310,39,38,37,py3}
docs
skip_missing_interpreters = true

Expand Down

0 comments on commit eba420c

Please sign in to comment.