Skip to content

Commit

Permalink
Docs updates re: dropping 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jan 7, 2024
1 parent aa9d985 commit 6777028
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ Features:
the ``get_default_arg_name`` method. This is described in the argument
passing documentation.

Changes:
Other changes:

* Type annotations for ``FlaskParser`` have been improved
* Drop support for Python 3.7, which is EOL.
* Type annotations for ``FlaskParser`` have been improved.

8.3.0 (2023-07-10)
******************
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Install

pip install -U webargs

webargs supports Python >= 3.7.
webargs supports Python >= 3.8.


Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Install
=======

**webargs** requires Python >= 3.7. It depends on `marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ >= 3.0.0.
**webargs** requires Python >= 3.8. It depends on `marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ >= 3.0.0.

From the PyPI
-------------
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def read(fname):
extras_require=EXTRAS_REQUIRE,
license="MIT",
zip_safe=False,
keywords=(
keywords=[
"webargs",
"http",
"flask",
Expand All @@ -93,8 +93,8 @@ def read(fname):
"rest",
"api",
"marshmallow",
),
python_requires=">=3.7.2",
],
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 6777028

Please sign in to comment.