Update Python versions only py27 and 35

This commit updates Python versions to use only python 2.7 and 3.5. We
use them in our CI now. So, we don't need to have the other versions
in this cookiecutter.

Change-Id: I1cd89ff5159a00320e142d0bbfc751f74c0b4663
This commit is contained in:
Masayuki Igawa 2017-12-25 16:44:00 +09:00
parent c323c5ae0b
commit 009d278d86
No known key found for this signature in database
GPG Key ID: 290F53EDC899BF89
3 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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 =

View File

@ -1,6 +1,6 @@
[tox]
minversion = 2.0
envlist = py34,py27,pypy,pep8
envlist = py35,py27,pep8
skipsdist = True
[testenv]