Skip to content

Commit a9c5e09

Browse files
committed
Merge branch 'master' into support-jsonify
2 parents 5fda54b + 543950e commit a9c5e09

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PyMongo support for Flask applications
55
## Quickstart
66

77
```python
8-
from flask import Flask
8+
from flask import Flask, render_template
99
from flask_pymongo import PyMongo
1010

1111
app = Flask(__name__)

azure-pipelines.yml

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

docs/index.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,12 @@ History and Contributors
182182

183183
Changes:
184184

185-
- 2.4.0: TBD
185+
- 2.4.0: Unreleased
186186

187+
- `#125 <https://github.com/dcrosta/flask-pymongo/pull/125>`_ Drop
188+
MongoDB 3.2 support.
189+
- `#130 <https://github.com/dcrosta/flask-pymongo/pull/130>`_ Fix
190+
quickstart example in README (Emmanuel Arias).
187191
- `#62 <https://github.com/dcrosta/flask-pymongo/issues/62>`_ Add
188192
support for :func:`~flask.json.jsonify()`.
189193

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
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{32,34,36,40,41}-flask{0_11,0_12,10}, style
5+
pymongo{33,34,35,36,37,38}-mongo{34,36,40,41}-flask{0_11,0_12,10}, style
66

77
[testenv]
88
docker =
9-
mongo32: mongo:3.2
109
mongo34: mongo:3.4
1110
mongo36: mongo:3.6
1211
mongo40: mongo:4.0

0 commit comments

Comments
 (0)