Skip to content

Commit

Permalink
docs: fix installation instruction (#372)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
zahrevsky authored Jan 2, 2023
1 parent 32d0d18 commit a03e74d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a03e74d

Please sign in to comment.