From: Oleg Broytman Date: Sat, 15 Apr 2017 18:56:12 +0000 (+0300) Subject: Python: 2.6, 2.7 and 3.3+ X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=commitdiff_plain;h=4b24cbd411ed9fdf03d22a78430710db49a4ff30 Python: 2.6, 2.7 and 3.3+ --- diff --git a/project_template/setup.py b/project_template/setup.py index a90dc05..ba9c1f7 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -35,7 +35,11 @@ setup(name='{project}', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 2 :: Only', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], packages=['{project}'], package_data={'{project}': []}, diff --git a/project_template/tox.ini b/project_template/tox.ini index fcb2701..7ebfa92 100644 --- a/project_template/tox.ini +++ b/project_template/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.8 toxworkdir={homedir}/.tox/{project} -envlist = {py26,py27,py34},{py27,py34}-flake8 +envlist = {py26,py27,py33,py34,py35,py36},{py27,py36}-flake8 # Base test environment settings [testenv]