From 3494b4890969bff8dbd8fd804e1bf11cb994a0d9 Mon Sep 17 00:00:00 2001 From: Omar Kohl Date: Fri, 24 Jun 2016 20:49:54 +0200 Subject: [PATCH] Add py35 to .travis.yml and remove support for py32 and py33 Travis seems to have some issue with Python 3.2 and since afaik Python 3.2 and 3.3 are not actually used we just remove them. --- .travis.yml | 3 +-- setup.py | 2 -- tox.ini | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index cbea902..4b32991 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,8 @@ language: python python: - 2.6 - 2.7 - - 3.2 - - 3.3 - 3.4 + - 3.5 - pypy install: diff --git a/setup.py b/setup.py index ac993f4..24385eb 100755 --- a/setup.py +++ b/setup.py @@ -46,8 +46,6 @@ def _read(fname): 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Testing', diff --git a/tox.ini b/tox.ini index cf10619..5dbdb5c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py32, py33, py34, py35 +envlist = py26, py27, py34, py35 [testenv] commands = py.test tests/test_pytest_datafiles.py