File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ GraphQL-core 3 can be installed from PyPI using the built-in pip command:
48
48
49
49
python -m pip install graphql-core
50
50
51
- You can also use [ pipenv ] ( https://docs.pipenv.org/ ) for installation in a
51
+ You can also use [ poetry ] ( https://github.com/python-poetry/poetry ) for installation in a
52
52
virtual environment:
53
53
54
- pipenv install graphql-core
54
+ poetry install
55
55
56
56
57
57
## Usage
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ You can install GraphQL-core 3 using pip_::
33
33
34
34
pip install graphql-core
35
35
36
- You can also install GraphQL-core 3 with pipenv _ , if you prefer that::
36
+ You can also install GraphQL-core 3 with poetry _ , if you prefer that::
37
37
38
- pipenv install graphql-core
38
+ poetry install
39
39
40
40
Now you can start using GraphQL-core 3 by importing from the top-level
41
41
:mod: `graphql ` package. Nearly everything defined in the sub-packages
@@ -94,4 +94,4 @@ in the current development or want to report issues or send pull requests.
94
94
.. _Execution : https://facebook.github.io/graphql/draft/#sec-Execution
95
95
.. _Response : https://facebook.github.io/graphql/draft/#sec-Response
96
96
.. _pip : https://pip.pypa.io/
97
- .. _ pipenv : https://github.com/pypa/pipenv
97
+ .. _ poetry : https://github.com/python-poetry/poetry
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ def getting_started(capsys):
50
50
intro = get_snippets ("intro" )
51
51
pip_install = intro .pop (0 )
52
52
assert "pip install" in pip_install and "graphql-core" in pip_install
53
- pipenv_install = intro .pop (0 )
54
- assert "pipenv install" in pipenv_install and "graphql-core" in pipenv_install
53
+ poetry_install = intro .pop (0 )
54
+ assert "poetry install" in poetry_install
55
55
create_schema = intro .pop (0 )
56
56
assert "schema = GraphQLSchema(" in create_schema
57
57
scope : Scope = {}
You can’t perform that action at this time.
0 commit comments