Skip to content

Commit 883350e

Browse files
authored
Merge pull request #41 from azmeuk/py
chore: stop support for python<=3.7 and start support for python>=3.11
2 parents f734493 + cf41f66 commit 883350e

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/tests.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
python:
20+
- '3.12'
21+
- '3.11'
22+
- '3.10'
2023
- '3.9'
2124
- '3.8'
22-
- '3.7'
23-
- '3.6'
24-
- pypy3
25+
- pypy-3.10
2526
steps:
2627
- uses: actions/checkout@v2
2728
- uses: actions/setup-python@v2
@@ -39,7 +40,7 @@ jobs:
3940
- uses: actions/checkout@v2
4041
- uses: actions/setup-python@v2
4142
with:
42-
python-version: '3.9'
43+
python-version: '3.11'
4344
- uses: actions/cache@v1
4445
with:
4546
path: ~/.cache/pip
@@ -56,7 +57,7 @@ jobs:
5657
- uses: actions/checkout@v2
5758
- uses: actions/setup-python@v2
5859
with:
59-
python-version: '3.9'
60+
python-version: '3.11'
6061
- uses: actions/cache@v1
6162
with:
6263
path: ~/.cache/pip

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repos:
44
rev: v3.15.0
55
hooks:
66
- id: pyupgrade
7-
args: ["--py36-plus"]
7+
args: ["--py38-plus"]
88
- repo: https://github.com/asottile/reorder_python_imports
99
rev: v3.12.0
1010
hooks:

CHANGES.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Changes
44
Version 0.x
55
-----------
66

7-
Unreleased
7+
- Stop support for python 3.6 and 3.7. Start support for python3
8+
3.11 and 3.12. (`#41`)
89

910
Version 0.3
1011
-----------

README.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ to install::
1414

1515
pip install WTForms-SQLAlchemy
1616

17-
Python 3.6 to 3.10 are supported.
18-
1917
An example using Flask is included in ``examples/flask``.
2018

2119
Features

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ classifiers =
2121
Operating System :: OS Independent
2222
Programming Language :: Python
2323
Programming Language :: Python :: 3
24-
Programming Language :: Python :: 3.6
25-
Programming Language :: Python :: 3.7
2624
Programming Language :: Python :: 3.8
2725
Programming Language :: Python :: 3.9
2826
Programming Language :: Python :: 3.10
27+
Programming Language :: Python :: 3.11
28+
Programming Language :: Python :: 3.12
2929
Topic :: Internet :: WWW/HTTP :: Dynamic Content
3030
Topic :: Software Development :: Libraries :: Python Modules
3131

3232
[options]
3333
packages = wtforms_sqlalchemy
3434
include_package_data = true
35-
python_requires = >= 3.6
35+
python_requires = >= 3.8
3636
install_requires =
3737
WTForms>=1.0.5,<3.1
3838
SQLAlchemy>=0.7.10,<2

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310, style, docs
2+
envlist = py38, py39, py310, py311, py312, style, docs
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)