From a03e74dbe37024b2f75fd785e799bd236f64650e Mon Sep 17 00:00:00 2001 From: Vladislav Zahrevsky Date: Mon, 2 Jan 2023 16:16:25 +0200 Subject: [PATCH] docs: fix installation instruction (#372) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Install instructions in the README.md fails with an error: „Could not find a version that satisfies the requirement graphene-sqlalchemy>=3“ This is because v3 is in beta. Therefore, installing with '--pre' fixes the problem. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68719f4d..6e96f91e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ A [SQLAlchemy](http://www.sqlalchemy.org/) integration for [Graphene](http://gra For installing Graphene, just run this command in your shell. ```bash -pip install "graphene-sqlalchemy>=3" +pip install --pre "graphene-sqlalchemy" ``` ## Examples