8000 Stop supporting Pythons 2.6 and 3.2 by sigmavirus24 · Pull Request #548 · sigmavirus24/github3.py · GitHub
[go: up one dir, main page]

Skip to content

Stop supporting Pythons 2.6 and 3.2 #548

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,8 @@ env:

matrix:
include:
- python: 2.6
env: TOXENV=py26 REQUESTS_VERSION="===2.0.1"
- python: 2.7
env: TOXENV=py27 REQUESTS_VERSION="===2.0.1"
- python: 3.2
env: TOXENV=py32 REQUESTS_VERSION="===2.0.1"
- python: 3.3
env: TOXENV=py33 REQUESTS_VERSION="===2.0.1"
- python: 3.4
Expand All @@ -29,12 +25,8 @@ matrix:
env: TOXENV=py35 REQUESTS_VERSION="===2.0.1"
- python: pypy
env: TOXENV=pypy REQUESTS_VERSION="===2.0.1"
- python: 2.6
env: TOXENV=py26 REQUESTS_VERSION=""
- python: 2.7
env: TOXENV=py27 REQUESTS_VERSION=""
- python: 3.2
env: TOXENV=py32 REQUESTS_VERSION=""
- python: 3.3
env: TOXENV=py33 REQUESTS_VERSION=""
- python: 3.4
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,11 @@ def run_tests(self):
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,py34,pypy,{py27,py34}-flake8,docstrings
envlist = py27,py33,py34,pypy,{py27,py34}-flake8,docstrings

[testenv]
pip_pre = False
Expand Down
0