Skip to content

Commit

Permalink
Merge pull request #2416 from bagerard/remove_python_35
Browse files Browse the repository at this point in the history
Remove Py3.5 as it is EOL and added 3.9 to CI
  • Loading branch information
bagerard committed Nov 12, 2020
2 parents fc3ccf9 + 3f5a15d commit eeac3bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
language: python
dist: xenial
python:
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
- pypy3

env:
Expand Down
3 changes: 2 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ Changelog
Development
===========
- (Fill this out as you fix issues and develop your features).
- Bug fix in DynamicDocument which isn not parsing known fields in constructor like Document do #2412
- Bug fix in DynamicDocument which is not parsing known fields in constructor like Document do #2412
- When using pymongo >= 3.7, make use of Collection.count_documents instead of Collection.count
and Cursor.count that got deprecated in pymongo >= 3.7.
This should have a negative impact on performance of count see Issue #2219
- Fix a bug that made the queryset drop the read_preference after clone().
- Remove Py3.5 from CI as it reached EOL and add Python 3.9
- Fix the behavior of Doc.objects.limit(0) which should return all documents (similar to mongodb) #2311
- Bug fix in ListField when updating the first item, it was saving the whole list, instead of
just replacing the first item (as it's usually done) #2392
Expand Down

0 comments on commit eeac3bd

Please sign in to comment.