File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ Changelog
66Development
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
Original file line number Diff line number Diff line change 2828)
2929
3030
31- VERSION = (0 , 19 , 0 )
31+ VERSION = (0 , 19 , 1 )
3232
3333
3434def get_version ():
Original file line number Diff line number Diff 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}
121121if sys .version_info [0 ] == 3 :
You can’t perform that action at this time.
0 commit comments