Skip to content

Commit 91c4c19

Browse files
committed
don't test with very old pymongo, drop < 3.3.x versions
1 parent b120c2d commit 91c4c19

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ python:
77
env:
88
- STYLE=1
99
# keep this list in sync with what's in tox.ini
10-
- PYMONGO=pymongo30
11-
- PYMONGO=pymongo31
12-
- PYMONGO=pymongo32
1310
- PYMONGO=pymongo33
1411
- PYMONGO=pymongo34
1512
- PYMONGO=pymongo35
1613
- PYMONGO=pymongo36
1714
- PYMONGO=pymongo37
15+
- PYMONGO=pymongo38
1816
matrix:
1917
exclude:
2018
# style runs on 2.7 only so that it runs first

docs/index.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@ History and Contributors
173173

174174
Changes:
175175

176+
- 2.3.0: April 24, 2019
177+
178+
- Update version compatibility matrix in tests, drop official support for
179+
PyMongo less than 3.3.x.
180+
176181
- 2.2.0: November 1, 2018
177182

178183
- `#117 <https://github.com/dcrosta/flask-pymongo/pull/117>`_ Allow URIs

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
packages=find_packages(),
3232
install_requires=[
3333
"Flask>=0.11",
34-
"PyMongo>=3.0",
34+
"PyMongo>=3.3",
3535
],
3636
classifiers=[
3737
"Environment :: Web Environment",

tox.ini

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

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

77
[testenv]
88
docker =
@@ -15,14 +15,12 @@ docker =
1515
deps =
1616
pytest
1717

18-
pymongo30: pymongo>=3.0,<3.1
19-
pymongo31: pymongo>=3.1,<3.2
20-
pymongo32: pymongo>=3.2,<3.3
2118
pymongo33: pymongo>=3.3,<3.4
2219
pymongo34: pymongo>=3.4,<3.5
2320
pymongo35: pymongo>=3.5,<3.6
2421
pymongo36: pymongo>=3.6,<3.7
2522
pymongo37: pymongo>=3.7,<3.8
23+
pymongo38: pymongo>=3.8,<3.9
2624

2725
flask0_11: flask>=0.11,<0.12
2826
flask0_12: flask>=0.12,<1.0

0 commit comments

Comments
 (0)