Skip to content

Commit fc85d87

Browse files
authored
Merge pull request #92 from jonafato/drop-eol-pythons
Drop support for end-of-lifed Python versions
2 parents 22e80c2 + 5008bda commit fc85d87

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ language: python
55
python:
66
- "3.5"
77
- "3.4"
8-
- "3.3"
98
- "2.7"
10-
- "2.6"
119
- "pypy"
1210

1311
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines:
9999
2. If the pull request adds functionality, the docs should be updated. Put
100100
your new functionality into a function with a docstring, and add the
101101
feature to the list in README.rst.
102-
3. The pull request should work for Python 2.6, 2.7, 3.3, and 3.4, 3.5, and for PyPy. Check
102+
3. The pull request should work for Python 2.7, and 3.4, 3.5, and for PyPy. Check
103103
https://travis-ci.org/bndr/pipreqs/pull_requests
104104
and make sure that the tests pass for all supported Python versions.
105105

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,8 @@
4545
'License :: OSI Approved :: Apache Software License',
4646
'Natural Language :: English',
4747
"Programming Language :: Python :: 2",
48-
'Programming Language :: Python :: 2.6',
4948
'Programming Language :: Python :: 2.7',
5049
'Programming Language :: Python :: 3',
51-
'Programming Language :: Python :: 3.3',
5250
'Programming Language :: Python :: 3.4',
5351
'Programming Language :: Python :: 3.5',
5452
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35
2+
envlist = py27, py34, py35
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)