Skip to content

Commit 71e3073

Browse files
committed
update supported dependencies & test matrix
added mongo 4.2, pymongo 3.9, flask 1.1; removed flask 0.11, python 3.4
1 parent 7e22492 commit 71e3073

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

azure-pipelines.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
matrix:
1818
Python27:
1919
python.version: '2.7'
20-
Python34:
21-
python.version: '3.4'
2220
Python35:
2321
python.version: '3.5'
2422
Python36:

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"

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
; keep the pymongo list in sync with what's in .travis.yaml
44
envlist=
5-
pymongo{33,34,35,36,37,38}-mongo{34,36,40,41}-flask{0_11,0_12,10}, style
5+
pymongo{33,34,35,36,37,38,39}-mongo{34,36,40,42}-flask{0_12,10,11}, style
66

77
[testenv]
88
docker =
99
mongo34: mongo:3.4
1010
mongo36: mongo:3.6
1111
mongo40: mongo:4.0
12-
mongo41: mongo:4.1
12+
mongo42: mongo:4.2
1313

1414
deps =
1515
pytest
@@ -20,10 +20,11 @@ deps =
2020
pymongo36: pymongo>=3.6,<3.7
2121
pymongo37: pymongo>=3.7,<3.8
2222
pymongo38: pymongo>=3.8,<3.9
23+
pymongo39: pymongo>=3.9,<3.10
2324

24-
flask0_11: flask>=0.11,<0.12
2525
flask0_12: flask>=0.12,<1.0
2626
flask10: flask>=1.0,<1.1
27+
flask11: flask>=1.1,<1.2
2728

2829
commands =
2930
{envbindir}/py.test --tb=native {toxinidir}

0 commit comments

Comments
 (0)