From 254e16925644e114cb06ceaf9085196a6de0545d Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 8 Oct 2015 15:19:04 -0400 Subject: [PATCH 1/2] TST: drop py2.6 & py3.3 testing As discussed on the mailing list, going forward we will be dropping support for python 2.6 and python 3.3. This allows mpl to use ordered dicts and is required for in-progress traitlet/serialization work. - moved minimum support numpy test to 2.7 - moved pandas optional test dep to 3.5 http://matplotlib.1069221.n5.nabble.com/Matplotlib-devel-supported-python-versions-tt46154.html --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6022a59c9a32..41adfd06281e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,13 +34,11 @@ language: python matrix: include: - - python: 2.6 - env: NUMPY=numpy==1.6 MOCK=mock - python: 2.7 - env: MOCK=mock PANDAS=pandas - - python: 3.3 + env: MOCK=mock NUMPY=numpy==1.6 - python: 3.4 - python: 3.5 + env: PANDAS=pandas - python: 2.7 env: TEST_ARGS=--pep8 - python: 2.7 From 5beb7ab4964aeb8df98fb8980fce01bef67e07db Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 8 Oct 2015 15:42:48 -0400 Subject: [PATCH 2/2] BLD: updated classifiers --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 90e2edd4e491..861712f80cab 100644 --- a/setup.py +++ b/setup.py @@ -119,8 +119,11 @@ 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Python Software Foundation License', 'Programming Language :: Python', - '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', 'Topic :: Scientific/Engineering :: Visualization', ]