Skip to content

Commit 80b038f

Browse files
committed
Drop support for EOL Python 3.3
1 parent f773b4c commit 80b038f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Diff for: .travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
python:
33
- "2.7"
4-
- "3.3"
54
- "3.4"
65
- "3.5"
76
- "3.6"

Diff for: setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def _stamp_version(filename):
8080
package_data={'git.test': ['fixtures/*']},
8181
package_dir={'git': 'git'},
8282
license="BSD License",
83-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
83+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
8484
requires=['gitdb2 (>=2.0.0)'],
8585
install_requires=install_requires,
8686
test_requirements=test_requires + install_requires,
@@ -107,7 +107,6 @@ def _stamp_version(filename):
107107
"Programming Language :: Python :: 2",
108108
"Programming Language :: Python :: 2.7",
109109
"Programming Language :: Python :: 3",
110-
"Programming Language :: Python :: 3.3",
111110
"Programming Language :: Python :: 3.4",
112111
"Programming Language :: Python :: 3.5",
113112
"Programming Language :: Python :: 3.6",

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36,flake8
2+
envlist = py27,py34,py35,py36,flake8
33

44
[testenv]
55
commands = nosetests {posargs}

0 commit comments

Comments
 (0)