From 34d03a7bd2443450f1933616b90062164ca4b913 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Thu, 26 Oct 2017 00:22:59 -0700 Subject: [PATCH] Updated docs to use stable version of Graphene 2.0 --- README.md | 2 +- docs/quickstart.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80c3d9c1..2288f341 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Also, Graphene is fully compatible with the GraphQL spec, working seamlessly wit For instaling graphene, just run this command in your shell ```bash -pip install "graphene>=2.0.dev" +pip install "graphene>=2.0" ``` ## 2.0 Upgrade Guide diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 008372d9..a2d39481 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -20,7 +20,7 @@ Project setup .. code:: bash - pip install "graphene>=2.0.dev" + pip install "graphene>=2.0" Creating a basic Schema -----------------------