Merge pull request #2233 from bagerard/release_0_19_1
Bump version to 0.19.1 + force pillow to be < 7.0.0
This commit is contained in:
		| @@ -6,6 +6,10 @@ Changelog | |||||||
| Development | Development | ||||||
| =========== | =========== | ||||||
| - (Fill this out as you fix issues and develop your features). | - (Fill this out as you fix issues and develop your features). | ||||||
|  |  | ||||||
|  | Changes in 0.19.1 | ||||||
|  | ================= | ||||||
|  | - Requires Pillow < 7.0.0 as it dropped Python2 support | ||||||
| - DEPRECATION: The interface of ``QuerySet.aggregate`` method was changed, it no longer takes an unpacked list of | - DEPRECATION: The interface of ``QuerySet.aggregate`` method was changed, it no longer takes an unpacked list of | ||||||
|     pipeline steps (*pipeline) but simply takes the pipeline list just like ``pymongo.Collection.aggregate`` does. #2079 |     pipeline steps (*pipeline) but simply takes the pipeline list just like ``pymongo.Collection.aggregate`` does. #2079 | ||||||
|  |  | ||||||
|   | |||||||
| @@ -28,7 +28,7 @@ __all__ = ( | |||||||
| ) | ) | ||||||
|  |  | ||||||
|  |  | ||||||
| VERSION = (0, 19, 0) | VERSION = (0, 19, 1) | ||||||
|  |  | ||||||
|  |  | ||||||
| def get_version(): | def get_version(): | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								setup.py
									
									
									
									
									
								
							| @@ -115,7 +115,7 @@ extra_opts = { | |||||||
|         "pytest-cov", |         "pytest-cov", | ||||||
|         "coverage<5.0",  # recent coverage switched to sqlite format for the .coverage file which isn't handled properly by coveralls |         "coverage<5.0",  # recent coverage switched to sqlite format for the .coverage file which isn't handled properly by coveralls | ||||||
|         "blinker", |         "blinker", | ||||||
|         "Pillow>=2.0.0", |         "Pillow>=2.0.0, <7.0.0",  # 7.0.0 dropped Python2 support | ||||||
|     ], |     ], | ||||||
| } | } | ||||||
| if sys.version_info[0] == 3: | if sys.version_info[0] == 3: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user