-
Notifications
You must be signed in to change notification settings - Fork 9
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
provide django version check guidance #245
Conversation
README.md
Outdated
|
||
You can check what version of Django you're using with: | ||
```bash | ||
$ pip show django |
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.
The output of $ django-admin --version
is a lot simpler. (However, if they follow the instructions above, I'm not sure how they would get to this point without knowing what version of Django they're using.)
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.
Also pip install django-mongodb-backend
installs the corresponding Django
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.
Then let's have main
be non-specific?
pip install django-mongodb-backend
and then also check the version.
I've checked with some folks adhoc, they have still just done pip install django-mongodb-backend
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.
I'd rather not omit the version install advice/qualifiers, since there will be plenty of people who want to add this to an existing project on a particular version of Django. What you wrote is fine for now.
No description provided.