Skip to content

Commit eeac3bd

Browse files
authored
Merge pull request #2416 from bagerard/remove_python_35
Remove Py3.5 as it is EOL and added 3.9 to CI
2 parents fc3ccf9 + 3f5a15d commit eeac3bd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
language: python
1717
dist: xenial
1818
python:
19-
- 3.5
2019
- 3.6
2120
- 3.7
2221
- 3.8
22+
- 3.9
2323
- pypy3
2424

2525
env:

docs/changelog.rst

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

0 commit comments

Comments
 (0)