diff --git a/README.rst b/README.rst index 429e87a..5b3b822 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ Cookiecutter template for an OpenStack project. See https://github.com/audreyr/c * hacking_: Enforces the OpenStack Hacking Guidelines * testrepository_: Runs tests using testrepository * OpenStack-Infra_: Ready for OpenStack Continuous Integration testing -* Tox_ testing: Setup to easily test for Python 2.6, 2.7, 3.3, 3.4 +* Tox_ testing: Setup to easily test for Python 2.7, 3.5 * Sphinx_ docs: Documentation ready for generation and publication Usage diff --git a/{{cookiecutter.repo_name}}/setup.cfg b/{{cookiecutter.repo_name}}/setup.cfg index 7fe6dd7..a490152 100644 --- a/{{cookiecutter.repo_name}}/setup.cfg +++ b/{{cookiecutter.repo_name}}/setup.cfg @@ -16,8 +16,7 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 - Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 [files] packages = diff --git a/{{cookiecutter.repo_name}}/tox.ini b/{{cookiecutter.repo_name}}/tox.ini index 71edf79..61b4d86 100644 --- a/{{cookiecutter.repo_name}}/tox.ini +++ b/{{cookiecutter.repo_name}}/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py34,py27,pypy,pep8 +envlist = py35,py27,pep8 skipsdist = True [testenv]