Skip to content

Commit

Permalink
Merge pull request #2233 from bagerard/release_0_19_1
Browse files Browse the repository at this point in the history
Bump version to 0.19.1 + force pillow to be < 7.0.0
  • Loading branch information
erdenezul authored Jan 3, 2020
2 parents 152b51f + 75ee282 commit 80ea1f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Changelog
Development
===========
- (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
pipeline steps (*pipeline) but simply takes the pipeline list just like ``pymongo.Collection.aggregate`` does. #2079
Expand Down
2 changes: 1 addition & 1 deletion mongoengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
)


VERSION = (0, 19, 0)
VERSION = (0, 19, 1)


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def run_tests(self):
"pytest-cov",
"coverage<5.0", # recent coverage switched to sqlite format for the .coverage file which isn't handled properly by coveralls
"blinker",
"Pillow>=2.0.0",
"Pillow>=2.0.0, <7.0.0", # 7.0.0 dropped Python2 support
],
}
if sys.version_info[0] == 3:
Expand Down

0 comments on commit 80ea1f6

Please sign in to comment.