From 80b038f8d8c7c67c148ebd7a5f7a0cb39541b761 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sun, 18 Mar 2018 22:47:18 +0200 Subject: Drop support for EOL Python 3.3 --- .travis.yml | 1 - setup.py | 3 +-- tox.ini | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 524b8013..52223bdb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - "2.7" - - "3.3" - "3.4" - "3.5" - "3.6" diff --git a/setup.py b/setup.py index 5db8e615..2703a9ca 100755 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ setup( package_data={'git.test': ['fixtures/*']}, package_dir={'git': 'git'}, license="BSD License", - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', requires=['gitdb2 (>=2.0.0)'], install_requires=install_requires, test_requirements=test_requires + install_requires, @@ -107,7 +107,6 @@ setup( "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", "Programming Language :: Python :: 3.6", diff --git a/tox.ini b/tox.ini index 21e91c7d..ed09c08b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py33,py34,py35,py36,flake8 +envlist = py27,py34,py35,py36,flake8 [testenv] commands = nosetests {posargs} -- cgit v1.2.3