From f273a2bb3a005dae6e36a350db9e92b51a8439d0 Mon Sep 17 00:00:00 2001 From: Leszek Hanusz Date: Mon, 23 Oct 2023 16:50:38 +0200 Subject: [PATCH] DOC explain how to install pre-releases versions --- docs/intro.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/intro.rst b/docs/intro.rst index f7a4b71d..8f59ed16 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -12,7 +12,11 @@ Installation You can install GQL 3 and all the extra dependencies using pip_:: - pip install gql[all] + pip install "gql[all]" + +To have the latest pre-releases versions of gql, you can use:: + + pip install --pre "gql[all]" After installation, you can start using GQL by importing from the top-level :mod:`gql` package. @@ -70,6 +74,11 @@ To install gql with less dependencies, you might want to instead install a combi following packages: :code:`gql-with-aiohttp`, :code:`gql-with-websockets`, :code:`gql-with-requests`, :code:`gql-with-botocore` +If you want to have the latest pre-releases version of gql and graphql-core, you can install +them with conda using:: + + conda install -c conda-forge -c conda-forge/label/graphql_core_alpha -c conda-forge/label/gql_beta gql-with-all + Reporting Issues and Contributing ---------------------------------