Skip to content

Commit a03e74d

Browse files
authored
docs: fix installation instruction (#372)
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.
1 parent 32d0d18 commit a03e74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A [SQLAlchemy](http://www.sqlalchemy.org/) integration for [Graphene](http://gra
1818
For installing Graphene, just run this command in your shell.
1919

2020
```bash
21-
pip install "graphene-sqlalchemy>=3"
21+
pip install --pre "graphene-sqlalchemy"
2222
```
2323

2424
## Examples

0 commit comments

Comments
 (0)