Skip to content

Commit b9b049b

Browse files
authored
Merge pull request #661 from cclauss/patch-2
Drop support for Python 3.4 because it is now EOL
2 parents 3e65c49 + e5a91d9 commit b9b049b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ language: python
22
matrix:
33
include:
44
- python: 2.7
5-
- python: 3.4
65
- python: 3.5
76
- python: 3.6
87
- python: 3.7
98
dist: xenial
10-
sudo: true
119
cache: pip
1210
before_install:
1311
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && openssl aes-256-cbc -K $encrypted_cebf25e6c525_key

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ discovery.set_username_and_password('<username>', '<password>')
194194

195195
## Python version
196196

197-
Tested on Python 2.7, 3.4, 3.5, and 3.6.
197+
Tested on Python 2.7, 3.5, 3.6, and 3.7.
198198

199199
## Changes for v1.0
200200
Version 1.0 focuses on the move to programmatically-generated code for many of the services. See the [changelog](https://github.com/watson-developer-cloud/python-sdk/wiki/Changelog) for the details.

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
2-
envlist = lint, py27, py34, py35, py36
2+
envlist = lint, py27, py35, py36, py37
33

44
[testenv:lint]
5-
basepython = python2.7
5+
basepython = python3.7
66
deps = pylint
77
commands = pylint ibm_watson test examples
88

0 commit comments

Comments
 (0)