From 5c6971a608fdb7e10863fe467ca9f92ea7236bb3 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Wed, 14 Sep 2016 20:56:32 -0700 Subject: [PATCH] Updated graphene readmes fixing graphene dev installation --- README.md | 6 +++--- README.rst | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 017534f5..036cfcf5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/README.rst b/README.rst index f85449e7..941b7be6 100644 --- a/README.rst +++ b/README.rst @@ -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 -----------------