|
61 | 61 | # The short X.Y version. |
62 | 62 | # version = u'3.0' |
63 | 63 | # The full version, including alpha/beta/rc tags. |
64 | | -version = release = u'3.0.0b1' |
| 64 | +version = release = u'3.0.0' |
65 | 65 |
|
66 | 66 | # The language for content autogenerated by Sphinx. Refer to documentation |
67 | 67 | # for a list of supported languages. |
|
96 | 96 | } |
97 | 97 | autosummary_generate = True |
98 | 98 |
|
| 99 | +# ignore certain warnings |
| 100 | +# (references to some of the Python built-in types do not resolve correctly) |
| 101 | +nitpicky = True |
| 102 | +nitpick_ignore = [('py:class', t) for t in ( |
| 103 | + 'dict', 'list', 'object', 'tuple', |
| 104 | + 'Exception', 'TypeError', 'ValueError', |
| 105 | + 'builtins.str', 'enum.Enum', 'typing.Generic', |
| 106 | + 'graphql.pyutils.cached_property.CachedProperty', |
| 107 | + 'graphql.pyutils.path.Path', |
| 108 | + 'graphql.error.graphql_error.GraphQLError', |
| 109 | + 'graphql.language.ast.DefinitionNode', |
| 110 | + 'graphql.language.ast.ExecutableDefinitionNode', |
| 111 | + 'graphql.language.ast.Node', |
| 112 | + 'graphql.language.ast.ScalarTypeDefinitionNode', |
| 113 | + 'graphql.language.ast.SelectionNode', |
| 114 | + 'graphql.language.ast.TypeDefinitionNode', |
| 115 | + 'graphql.language.ast.TypeExtensionNode', |
| 116 | + 'graphql.language.ast.TypeNode', |
| 117 | + 'graphql.language.ast.TypeSystemDefinitionNode', |
| 118 | + 'graphql.language.ast.ValueNode', |
| 119 | + 'graphql.language.visitor.Visitor', |
| 120 | + 'graphql.type.definition.GraphQLNamedType', |
| 121 | + 'graphql.type.definition.GraphQLType', |
| 122 | + 'graphql.type.definition.GraphQLWrappingType', |
| 123 | + 'graphql.validation.rules.ASTValidationRule', |
| 124 | + 'graphql.validation.rules.ValidationRule', |
| 125 | + 'graphql.validation.validation_context.ASTValidationContext', |
| 126 | + 'graphql.validation.rules.known_argument_names' |
| 127 | + '.KnownArgumentNamesOnDirectivesRule', |
| 128 | + 'graphql.validation.rules.provided_required_arguments' |
| 129 | + '.ProvidedRequiredArgumentsOnDirectivesRule')] |
| 130 | + |
99 | 131 | # The reST default role (used for this markup: `text`) to use for all |
100 | 132 | # documents. |
101 | 133 | # |
|
0 commit comments