File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ Changelog
6
6
Development
7
7
===========
8
8
- (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
9
13
- DEPRECATION: The interface of ``QuerySet.aggregate `` method was changed, it no longer takes an unpacked list of
10
14
pipeline steps (*pipeline) but simply takes the pipeline list just like ``pymongo.Collection.aggregate`` does. #2079
11
15
Original file line number Diff line number Diff line change 28
28
)
29
29
30
30
31
- VERSION = (0 , 19 , 0 )
31
+ VERSION = (0 , 19 , 1 )
32
32
33
33
34
34
def get_version ():
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ def run_tests(self):
115
115
"pytest-cov" ,
116
116
"coverage<5.0" , # recent coverage switched to sqlite format for the .coverage file which isn't handled properly by coveralls
117
117
"blinker" ,
118
- "Pillow>=2.0.0" ,
118
+ "Pillow>=2.0.0, <7.0.0" , # 7.0.0 dropped Python2 support
119
119
],
120
120
}
121
121
if sys .version_info [0 ] == 3 :
You can’t perform that action at this time.
0 commit comments