Skip to content

Drop support for python 3.7 #561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.8"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
16 changes: 13 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ Releases prior to 0.3.0 were “best effort” filled out, but are missing
some info. If you see your contribution missing info, please open a PR
on the Changelog!

.. _section-1.1.1:
1.1.0
.. _section-1.2.0:
1.2.0
-----
.. _bug_fixes-1.1.1
.. _bug_fixes-1.2.0
Bug Fixes
~~~~~~~~~

Expand All @@ -37,6 +37,16 @@ Bug Fixes
* Fixing test as HTTP Header MIMEAccept expects quality-factor number in form of `X.X` (#547) [chipndell]


.. _enhancements-1.2.0:

Enhancements
~~~~~~~~~~~~

::

* Drop support for python 3.7


.. _section-1.1.0:
1.1.0
-----
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ and expose its documentation properly using `Swagger`_.
Compatibility
=============

Flask-RESTX requires Python 3.7+.
Flask-RESTX requires Python 3.8+.

On Flask Compatibility
======================
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ development and to support our users.
Compatibility
=============

Flask-RESTX requires Python 3.7+.
Flask-RESTX requires Python 3.8+.


Installation
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ The development version can be downloaded from
pip install -e .[dev,test]


Flask-RESTX requires Python version 2.7, 3.5, 3.6, 3.7, or 3.8.
Flask-RESTX requires Python version 3.8+.
It's also working with PyPy and PyPy3.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def pip(filename):
"Topic :: System :: Software Distribution",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py{37, 38, 39, 310, 311}, pypy3.8, doc
envlist = py{38, 39, 310, 311}, pypy3.8, doc

[testenv]
commands = {posargs:inv test qa}
Expand Down