Skip to content

Commit 80ea1f6

Browse files
author
erdenezul
authored
Merge pull request #2233 from bagerard/release_0_19_1
Bump version to 0.19.1 + force pillow to be < 7.0.0
2 parents 152b51f + 75ee282 commit 80ea1f6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Changelog
66
Development
77
===========
88
- (Fill this out as you fix issues and develop your features).
9+
10+
Changes in 0.19.1
11+
=================
12+
- Requires Pillow < 7.0.0 as it dropped Python2 support
913
- DEPRECATION: The interface of ``QuerySet.aggregate`` method was changed, it no longer takes an unpacked list of
1014
pipeline steps (*pipeline) but simply takes the pipeline list just like ``pymongo.Collection.aggregate`` does. #2079
1115

mongoengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
)
2929

3030

31-
VERSION = (0, 19, 0)
31+
VERSION = (0, 19, 1)
3232

3333

3434
def get_version():

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def run_tests(self):
115115
"pytest-cov",
116116
"coverage<5.0", # recent coverage switched to sqlite format for the .coverage file which isn't handled properly by coveralls
117117
"blinker",
118-
"Pillow>=2.0.0",
118+
"Pillow>=2.0.0, <7.0.0", # 7.0.0 dropped Python2 support
119119
],
120120
}
121121
if sys.version_info[0] == 3:

0 commit comments

Comments
 (0)