diff --git a/.travis.yml b/.travis.yml index 122729c..4831ebf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,6 @@ language: python python: - 3.6 - 3.5 - - 3.4 - install: - pip install -U coverage coveralls diff --git a/CHANGELOG b/CHANGELOG index b375f73..5f71dfb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,11 @@ pytest-stub changelog ===================== +Unreleased +---------- +! Dropped QA for Python 3.4. + + v0.1.0 ------ -+ Basic functionality. ++ Basic functionality. \ No newline at end of file diff --git a/setup.py b/setup.py index 0b3971d..cebcef9 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,6 @@ def get_version(): 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'License :: OSI Approved :: BSD License' diff --git a/tox.ini b/tox.ini index 9d9a359..90a5622 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ # See http://tox.readthedocs.org/en/latest/examples.html for samples. [tox] envlist = - py{32,33,34,35,36} + py{35,36} skip_missing_interpreters = True