Skip to content

Commit ed6572d

Browse files
committed
Drop EOL Python 3.7, add support for Python 3.10, 3.11, and 3.12
1 parent 638cb40 commit ed6572d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python: ["3.7", "3.8", "3.9"]
34+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
3535
os: [ubuntu-latest, windows-latest]
3636

3737
steps:

docs/changelog.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@
33
Changelog
44
=========
55

6+
UNRELEASED
7+
----------
8+
9+
* Added support for Python 3.10, 3.11, and 3.12.
10+
* Dropped support for EOL Python 3.7.
11+
612
1.3.0 (2023-10-23)
713
------------------
814

9-
- Fix compatibility with ``Flask 3.0`` -- the consequence is that the deprecated and incompatible ``request_ctx`` has been removed.
15+
- Fixed compatibility with ``Flask 3.0`` -- the consequence is that the deprecated and incompatible ``request_ctx`` has been removed.
1016

1117
1.2.1
1218
------------------

setup.cfg

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ classifiers=
1919
Environment :: Web Environment
2020
Intended Audience :: Developers
2121
Operating System :: OS Independent
22-
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
24+
Programming Language :: Python :: 3.10
25+
Programming Language :: Python :: 3.11
26+
Programming Language :: Python :: 3.12
2527
License :: OSI Approved :: MIT License
2628
Topic :: Software Development :: Testing
2729
Development Status :: 5 - Production/Stable
@@ -30,7 +32,7 @@ classifiers=
3032
[options]
3133
packages = pytest_flask
3234
zip_safe = False
33-
python_requires = >= 3.7
35+
python_requires = >= 3.8
3436
setup_requires = setuptools_scm
3537
package_dir =
3638
=src

0 commit comments

Comments
 (0)