8000 Stop supporting Pythons 2.6 and 3.2 · pythonthings/github3.py@ad2a3ce · GitHub
[go: up one dir, main page]

Skip to content

Commit ad2a3ce

Browse files
sigmavirus24itsmemattchung
authored andcommitted
Stop supporting Pythons 2.6 and 3.2
pip and virtualenv no longer support 3.2 and 2.6 has been end-of-lifed for several years now. Let's stop supporting these for 1.0.
1 parent b79a174 commit ad2a3ce

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

.travis.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,8 @@ env:
1515

1616
matrix:
1717
include:
18-
- python: 2.6
19-
env: TOXENV=py26 REQUESTS_VERSION="===2.0.1"
2018
- python: 2.7
2119
env: TOXENV=py27 REQUESTS_VERSION="===2.0.1"
22-
- python: 3.2
23-
env: TOXENV=py32 REQUESTS_VERSION="===2.0.1"
2420
- python: 3.3
2521
env: TOXENV=py33 REQUESTS_VERSION="===2.0.1"
2622
- python: 3.4
@@ -29,12 +25,8 @@ matrix:
2925
env: TOXENV=py35 REQUESTS_VERSION="===2.0.1"
3026
- python: pypy
3127
env: TOXENV=pypy REQUESTS_VERSION="===2.0.1"
32-
- python: 2.6
33-
env: TOXENV=py26 REQUESTS_VERSION=""
3428
- python: 2.7
3529
env: TOXENV=py27 REQUESTS_VERSION=""
36-
- python: 3.2
37-
env: TOXENV=py32 REQUESTS_VERSION=""
3830
- python: 3.3
3931
env: TOXENV=py33 REQUESTS_VERSION=""
4032
- python: 3.4

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,11 @@ def run_tests(self):
8080
'Intended Audience :: Developers',
8181
'Programming Language :: Python',
8282
'Programming Language :: Python :: 2',
83-
'Programming Language :: Python :: 2.6',
8483
'Programming Language :: Python :: 2.7',
8584
'Programming Language :: Python :: 3',
86-
'Programming Language :: Python :: 3.2',
8785
'Programming Language :: Python :: 3.3',
8886
'Programming Language :: Python :: 3.4',
87+
'Programming Language :: Python :: 3.5',
8988
'Programming Language :: Python :: Implementation :: CPython',
9089
],
9190
extras_require={

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,py32,py33,py34,pypy,{py27,py34}-flake8,docstrings
2+
envlist = py27,py33,py34,pypy,{py27,py34}-flake8,docstrings
33

44
[testenv]
55
pip_pre = False

0 commit comments

Comments
 (0)
0