Skip to content

Commit 12751ca

Browse files
author
Jon Wayne Parrott
authored
Test on 3.5 and 3.6, stop testing 3.3 (#341)
1 parent 2243529 commit 12751ca

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

.travis.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
language: python
2-
python: 2.7
32
sudo: false
4-
cache: pip
5-
env:
6-
matrix:
7-
- TOX_ENV=py27
8-
- TOX_ENV=py33
9-
- TOX_ENV=py34
3+
cache:
4+
directories:
5+
- ${HOME}/.cache
6+
matrix:
7+
include:
8+
- python: 2.7
9+
env: TOXENV=py27
10+
- python: 3.4
11+
env: TOXENV=py34
12+
- python: 3.5
13+
env: TOXENV=py35
14+
- python: 3.6
15+
env: TOXENV=py36
1016
install:
11-
- pip install tox
12-
- pip install coveralls
17+
- pip install tox coveralls
1318
script:
14-
- tox -e $TOX_ENV
19+
- tox
1520
after_success:
1621
coveralls
1722
notifications:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ $ easy_install --upgrade google-api-python-client
1616
See the [Developers Guide](https://developers.google.com/api-client-library/python/start/get_started) for more detailed instructions and additional documentation.
1717

1818
# Python Version
19-
Python 2.7, 3.3, and 3.4 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions.
19+
Python 2.7, 3.4, 3.5, and 3.6 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions.
2020

2121
# Third Party Libraries and Dependencies
2222
The following libraries will be installed when you install the client library:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,33,34}-oauth2client{1,2,3,4}
2+
envlist = py{27,34,35,36}-oauth2client{1,2,3,4}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)