aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Wayne Parrott <jonwayne@google.com>2017-01-31 09:21:36 -0800
committerGitHub <noreply@github.com>2017-01-31 09:21:36 -0800
commit12751ca8bf2f72a6a4d240a0115b89308af6efe0 (patch)
treef946e87c2327f94e6f485623f6e905bac15598dd
parent2243529e68a76f5419b2ba62aae2efef5eba2d98 (diff)
downloadgoogle-api-python-client-12751ca8bf2f72a6a4d240a0115b89308af6efe0.tar.gz
Test on 3.5 and 3.6, stop testing 3.3 (#341)
-rw-r--r--.travis.yml25
-rw-r--r--README.md2
-rw-r--r--tox.ini2
3 files changed, 17 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index b72c5e986..fbce8fa1e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,17 +1,22 @@
language: python
-python: 2.7
sudo: false
-cache: pip
-env:
- matrix:
- - TOX_ENV=py27
- - TOX_ENV=py33
- - TOX_ENV=py34
+cache:
+ directories:
+ - ${HOME}/.cache
+matrix:
+ include:
+ - python: 2.7
+ env: TOXENV=py27
+ - python: 3.4
+ env: TOXENV=py34
+ - python: 3.5
+ env: TOXENV=py35
+ - python: 3.6
+ env: TOXENV=py36
install:
-- pip install tox
-- pip install coveralls
+- pip install tox coveralls
script:
-- tox -e $TOX_ENV
+- tox
after_success:
coveralls
notifications:
diff --git a/README.md b/README.md
index 9d11c67a8..06165ef4c 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ $ easy_install --upgrade google-api-python-client
See the [Developers Guide](https://developers.google.com/api-client-library/python/start/get_started) for more detailed instructions and additional documentation.
# Python Version
-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.
+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.
# Third Party Libraries and Dependencies
The following libraries will be installed when you install the client library:
diff --git a/tox.ini b/tox.ini
index 7b69ac59e..2664d2eb1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py{27,33,34}-oauth2client{1,2,3,4}
+envlist = py{27,34,35,36}-oauth2client{1,2,3,4}
[testenv]
deps =