Updated graphene readmes fixing graphene dev installation

This commit is contained in:
Syrus Akbary 2016-09-14 20:56:32 -07:00
parent a2b6d3dd05
commit 5c6971a608
2 changed files with 6 additions and 6 deletions

View File

@ -23,11 +23,11 @@ Graphene also supports *SQLAlchemy*!
For instaling graphene, just run this command in your shell
```bash
pip install graphene>=1.0.dev
pip install "graphene>=1.0.dev"
# In case of need Django model support
pip install graphene-django>=1.0.dev
pip install "graphene-django>=1.0.dev"
# Or in case of need SQLAlchemy support
pip install graphene-sqlalchemy>=1.0.dev
pip install "graphene-sqlalchemy>=1.0.dev"
```
## 1.0 Upgrade Guide

View File

@ -34,11 +34,11 @@ For instaling graphene, just run this command in your shell
.. code:: bash
pip install graphene>=1.0.dev
pip install "graphene>=1.0.dev"
# In case of need Django model support
pip install graphene-django>=1.0.dev
pip install "graphene-django>=1.0.dev"
# Or in case of need SQLAlchemy support
pip install graphene-sqlalchemy>=1.0.dev
pip install "graphene-sqlalchemy>=1.0.dev"
1.0 Upgrade Guide
-----------------