diff --git a/.travis.yml b/.travis.yml index 66cf76e0..40d0415e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ python: - "3.5" - "3.6" - "3.7" - - "pypy3" install: - pip install tox tox-travis diff --git a/docs/quickstart.rst b/docs/quickstart.rst index be2a1c82..fa012971 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -103,7 +103,7 @@ For each **Field** in our **Schema**, we write a **Resolver** method to fetch da Schema Definition Language (SDL) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In the `GraphQL Schema Definition Language`_, we could describe the feilds defined by our example code as show below. +In the `GraphQL Schema Definition Language`_, we could describe the fields defined by our example code as show below. .. _GraphQL Schema Definition Language: https://graphql.org/learn/schema/ diff --git a/graphene/__init__.py b/graphene/__init__.py index 8b2a090f..c79906f1 100644 --- a/graphene/__init__.py +++ b/graphene/__init__.py @@ -43,7 +43,7 @@ from .utils.resolve_only_args import resolve_only_args from .utils.module_loading import lazy_import -VERSION = (2, 1, 6, "final", 0) +VERSION = (2, 1, 7, "final", 0) __version__ = get_version(VERSION) diff --git a/setup.py b/setup.py index 7f6011dd..75d92f79 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ setup( install_requires=[ "six>=1.10.0,<2", "graphql-core>=2.1,<3", - "graphql-relay>=0.4.5,<1", + "graphql-relay>=2,<3", "aniso8601>=3,<=7", ], tests_require=tests_require,