diff --git a/.travis.yml b/.travis.yml index 33c8665a..5de4af8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,12 @@ language: python matrix: include: - - env: TOXENV=py27 - python: 2.7 - - env: TOXENV=py35 - python: 3.5 - env: TOXENV=py36 python: 3.6 - env: TOXENV=py37 python: 3.7 dist: xenial sudo: true - - env: TOXENV=pypy - python: pypy-5.7.1 - env: TOXENV=pre-commit python: 3.6 - env: TOXENV=mypy diff --git a/graphene/__init__.py b/graphene/__init__.py index ee7e13b7..24a90a1b 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, 4, "final", 0) +VERSION = (3, 0, 0, "alpha", 0) __version__ = get_version(VERSION) diff --git a/setup.py b/setup.py index c75df0ba..6b1a6ba3 100644 --- a/setup.py +++ b/setup.py @@ -73,13 +73,8 @@ setup( "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: Implementation :: PyPy", ], keywords="api graphql protocol rest relay graphene", packages=find_packages(exclude=["tests", "tests.*", "examples"]), diff --git a/tox.ini b/tox.ini index 57d1f78e..6c672705 100644 --- a/tox.ini +++ b/tox.ini @@ -1,16 +1,14 @@ [tox] -envlist = flake8,py27,py34,py35,py36,py37,pre-commit,pypy,mypy +envlist = flake8,py36,py37,pre-commit,mypy skipsdist = true [testenv] deps = .[test] - py{35,36,37}: pytest-asyncio + py{36,37}: pytest-asyncio setenv = PYTHONPATH = .:{envdir} commands = - py{27,py}: py.test --cov=graphene graphene examples {posargs} - py{35}: py.test --cov=graphene graphene examples tests_asyncio {posargs} py{36,37}: py.test --cov=graphene graphene examples tests_asyncio tests_py36 {posargs} [testenv:pre-commit]