Removed testing in Python 3.4 and start testing in 3.6

This commit is contained in:
Syrus Akbary 2017-07-12 21:53:53 -07:00
parent ec5697b185
commit 8ff3380291
2 changed files with 1 additions and 2 deletions

View File

@ -2,8 +2,8 @@ language: python
sudo: false sudo: false
python: python:
- 2.7 - 2.7
- 3.4
- 3.5 - 3.5
- 3.6
- pypy - pypy
before_install: before_install:
- | - |

View File

@ -9,7 +9,6 @@ from ..types import (Boolean, Enum, Int, Interface, List, NonNull, Scalar,
String, Union) String, Union)
from ..types.field import Field from ..types.field import Field
from ..types.objecttype import ObjectType, ObjectTypeOptions from ..types.objecttype import ObjectType, ObjectTypeOptions
from .node import is_node
class PageInfo(ObjectType): class PageInfo(ObjectType):