diff --git a/.travis.yml b/.travis.yml index dd02d949..166cd2ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,11 @@ language: python python: -- 2.7 - 3.6 install: - pip install coveralls tox-travis script: - tox -- python setup.py bdist_wheel --universal +- python setup.py bdist_wheel after_success: - coveralls deploy: diff --git a/setup.py b/setup.py index e02e70e0..41b16150 100644 --- a/setup.py +++ b/setup.py @@ -49,8 +49,7 @@ 'Intended Audience :: Developers', 'Topic :: Internet :: WWW/HTTP :: Indexing/Search', 'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python', 'Programming Language :: Python :: 3.6', 'Framework :: Django :: 1.11', ], diff --git a/tox.ini b/tox.ini index bcbbec98..504d17c3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,9 @@ [tox] skipsdist=True -envlist=lint,py{27,36}-dj{111} +envlist=lint,py{36}-dj{111} [testenv] basepython= - py27: python2.7 py36: python3.6 deps= dj111: Django>=1.11,<1.12 @@ -47,5 +46,4 @@ sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER [travis] python= - 2.7: py27-dj111 3.6: py36-dj111, lint