-
Notifications
You must be signed in to change notification settings - Fork 211
Support for pymongo 3 #214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
568dd07
differentiate updates from inserts to allow for updates to use the s…
e257266
Merge branch 'feature/atomic-updates'
075608d
added folders to gitignore
f3a2215
fixed pymongo version to be > 3.0
9fa43d4
removed deprecated MongoReplicaSetClient and all now unused connectio…
681b712
removed the use of the fields parameter which has now been changed to…
292e74c
removed use of the safe option which is now no longer used. All conne…
5b4e11d
added fixture teardown override to wipe out all collections. The djan…
69e028f
changed the flush command to not try and delete/remove records from c…
b02729c
removed the fixture teardown override
236b152
clear out any existing objects in the setup
8bc14d4
removed use of slave_okay option when creating connection
495b82d
removed use of slave_okay
1573e06
added some clean up in the setup to remove any old docs between tests
57cc51d
removed unique constraint test as this will now fail due to safe read…
2f259b4
Merge branch 'safe-writes'
30a6acf
Merge branch 'master' into feature/pymongo_3
801d7bf
updated link to new github user (django-nonrel)
5edbaef
merged changes from ajdavis:pymongo-3 branch
c0dcc66
removed distinguishes_insert_from_update flag in DatabaseFeatures (wr…
fef0185
reverted change to use tarballs instead of cloning from git
c1bb7dc
Merge remote-tracking branch 'upstream/master' into feature/pymongo_3
af3d08b
removed 1.7 from test options
7395f5f
added 1.7 back in, but allow to fail for now
122e62b
added can_rollback_ddl=True in DatabaseFeatures to fix issues with at…
e6d2b38
support pymongo 2.x
7faa4a4
added environment variables for testing against pymongo 2.8.1 and and…
605dfcb
cleanup based on @aburgel comments
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,7 @@ dist/ | |
.tox | ||
|
||
MANIFEST | ||
|
||
|
||
.env | ||
.idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
pymongo<3.0 | ||
|
||
pymongo>=2.8 | ||
|
||
https://github.com/django-nonrel/djangotoolbox/tarball/master | ||
https://github.com/django-nonrel/django/tarball/nonrel-1.5 | ||
https://github.com/django-nonrel/django-dbindexer/tarball/master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does django 1.7 actually work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not yet (am planning to look at that next). I've added it to the allowable failures for now