Skip to content

Commit 289de36

Browse files
Drop support for python 3.7 (#561)
Co-authored-by: Peter Doggart <[email protected]>
1 parent d9723a9 commit 289de36

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.8"]
1818
steps:
1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v4

CHANGELOG.rst

+13-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Releases prior to 0.3.0 were “best effort” filled out, but are missing
2525
some info. If you see your contribution missing info, please open a PR
2626
on the Changelog!
2727

28-
.. _section-1.1.1:
29-
1.1.0
28+
.. _section-1.2.0:
29+
1.2.0
3030
-----
31-
.. _bug_fixes-1.1.1
31+
.. _bug_fixes-1.2.0
3232
Bug Fixes
3333
~~~~~~~~~
3434

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

3939

40+
.. _enhancements-1.2.0:
41+
42+
Enhancements
43+
~~~~~~~~~~~~
44+
45+
::
46+
47+
* Drop support for python 3.7
48+
49+
4050
.. _section-1.1.0:
4151
1.1.0
4252
-----

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and expose its documentation properly using `Swagger`_.
3838
Compatibility
3939
=============
4040

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

4343
On Flask Compatibility
4444
======================

doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ development and to support our users.
3333
Compatibility
3434
=============
3535

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

3838

3939
Installation

doc/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ The development version can be downloaded from
2020
pip install -e .[dev,test]
2121
2222
23-
Flask-RESTX requires Python version 2.7, 3.5, 3.6, 3.7, or 3.8.
23+
Flask-RESTX requires Python version 3.8+.
2424
It's also working with PyPy and PyPy3.

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ def pip(filename):
102102
"Topic :: System :: Software Distribution",
103103
"Programming Language :: Python",
104104
"Programming Language :: Python :: 3",
105-
"Programming Language :: Python :: 3.7",
106105
"Programming Language :: Python :: 3.8",
107106
"Programming Language :: Python :: 3.9",
108107
"Programming Language :: Python :: 3.10",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{37, 38, 39, 310, 311}, pypy3.8, doc
7+
envlist = py{38, 39, 310, 311}, pypy3.8, doc
88

99
[testenv]
1010
commands = {posargs:inv test qa}

0 commit comments

Comments
 (0)