Skip to content

Commit 9ade87f

Browse files
committed
update docs & setup.py
1 parent 2c49819 commit 9ade87f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/index.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ versions.
6565

6666
Flask-PyMongo is tested against `supported versions
6767
<https://www.mongodb.com/support-policy>`_ of MongoDB, and Python 2.7
68-
and 3.4+. For the exact list of version combinations that are tested and
68+
and 3.5+. For the exact list of version combinations that are tested and
6969
known to be compatible, see the `envlist` in `tox.ini
7070
<https://github.com/dcrosta/flask-pymongo/blob/master/tox.ini>`_.
7171

@@ -190,6 +190,9 @@ Changes:
190190
quickstart example in README (Emmanuel Arias).
191191
- `#62 <https://github.com/dcrosta/flask-pymongo/issues/62>`_ Add
192192
support for :func:`~flask.json.jsonify()`.
193+
- `#131 <https://github.com/dcrosta/flask-pymongo/pulls/131>`_ Drop
194+
support for Flask 0.11 and Python 3.4; Add support for MongoDB 4.2,
195+
PyMongo 3.9, and Flask 1.1.
193196

194197
- 2.3.0: April 24, 2019
195198

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
platforms="any",
3131
packages=find_packages(),
3232
install_requires=[
33-
"Flask>=0.11",
33+
"Flask>=0.12",
3434
"PyMongo>=3.3",
3535
"six",
3636
],
@@ -41,10 +41,9 @@
4141
"License :: OSI Approved :: BSD License",
4242
"Operating System :: OS Independent",
4343
"Programming Language :: Python :: 2.7",
44-
"Programming Language :: Python :: 3.3",
45-
"Programming Language :: Python :: 3.4",
4644
"Programming Language :: Python :: 3.5",
4745
"Programming Language :: Python :: 3.6",
46+
"Programming Language :: Python :: 3.7",
4847
"Programming Language :: Python",
4948
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
5049
"Topic :: Software Development :: Libraries :: Python Modules"

0 commit comments

Comments
 (0)