Skip to content

Commit 8b89afe

Browse files
authored
docs: update sphinx to the latest version (#1497)
1 parent 5214347 commit 8b89afe

File tree

6 files changed

+8
-13
lines changed

6 files changed

+8
-13
lines changed

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ Graphene has multiple integrations with different frameworks:
3636
| SQLAlchemy | `graphene-sqlalchemy <https://git |
3737
| | hub.com/graphql-python/graphene-sqlalchemy/>`__ |
3838
+-------------------+-------------------------------------------------+
39-
| Google App Engine | `graphene-gae <http |
40-
| | s://github.com/graphql-python/graphene-gae/>`__ |
41-
+-------------------+-------------------------------------------------+
4239

4340
Also, Graphene is fully compatible with the GraphQL spec, working
4441
seamlessly with all GraphQL clients, such as

docs/api/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Execution Metadata
9292

9393
.. autoclass:: graphene.Context
9494

95-
.. autoclass:: graphql.execution.base.ExecutionResult
95+
.. autoclass:: graphql.ExecutionResult
9696

9797
.. Relay
9898
.. -----

docs/conf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
#
8383
# This is also used if you do content translation via gettext catalogs.
8484
# Usually you set "language" from the command line for these cases.
85-
language = None
85+
# language = None
8686

8787
# There are two options for replacing |today|: either, you set today to some
8888
# non-false value, then it is used:
@@ -456,5 +456,4 @@
456456
"http://docs.graphene-python.org/projects/sqlalchemy/en/latest/",
457457
None,
458458
),
459-
"graphene_gae": ("http://docs.graphene-python.org/projects/gae/en/latest/", None),
460459
}

docs/execution/queryvalidation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Query Validation
2-
==========
2+
================
33
GraphQL uses query validators to check if Query AST is valid and can be executed. Every GraphQL server implements
44
standard query validators. For example, there is an validator that tests if queried field exists on queried type, that
55
makes query fail with "Cannot query field on type" error if it doesn't.
@@ -8,7 +8,7 @@ To help with common use cases, graphene provides a few validation rules out of t
88

99

1010
Depth limit Validator
11-
-----------------
11+
---------------------
1212
The depth limit validator helps to prevent execution of malicious
1313
queries. It takes in the following arguments.
1414

@@ -17,7 +17,7 @@ queries. It takes in the following arguments.
1717
- ``callback`` Called each time validation runs. Receives an Object which is a map of the depths for each operation.
1818

1919
Usage
20-
-------
20+
-----
2121

2222
Here is how you would implement depth-limiting on your schema.
2323

@@ -54,7 +54,7 @@ the disable introspection validation rule ensures that your schema cannot be int
5454
This is a useful security measure in production environments.
5555

5656
Usage
57-
-------
57+
-----
5858

5959
Here is how you would disable introspection for your schema.
6060

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Integrations
2121
* `Graphene-Django <http://docs.graphene-python.org/projects/django/en/latest/>`_ (`source <https://github.com/graphql-python/graphene-django/>`_)
2222
* Flask-Graphql (`source <https://github.com/graphql-python/flask-graphql>`_)
2323
* `Graphene-SQLAlchemy <http://docs.graphene-python.org/projects/sqlalchemy/en/latest/>`_ (`source <https://github.com/graphql-python/graphene-sqlalchemy/>`_)
24-
* `Graphene-GAE <http://docs.graphene-python.org/projects/gae/en/latest/>`_ (`source <https://github.com/graphql-python/graphene-gae/>`_)
2524
* `Graphene-Mongo <http://graphene-mongo.readthedocs.io/en/latest/>`_ (`source <https://github.com/graphql-python/graphene-mongo>`_)
2625
* `Starlette <https://www.starlette.io/graphql/>`_ (`source <https://github.com/encode/starlette>`_)
2726
* `FastAPI <https://fastapi.tiangolo.com/advanced/graphql/>`_ (`source <https://github.com/tiangolo/fastapi>`_)

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Required library
2-
Sphinx==1.5.3
3-
sphinx-autobuild==0.7.1
2+
Sphinx==6.1.3
3+
sphinx-autobuild==2021.3.14
44
# Docs template
55
http://graphene-python.org/sphinx_graphene_theme.zip

0 commit comments

Comments
 (0)