Skip to content

Commit 15653d6

Browse files
ci(travis): remove python 3.5 testing and add verbose tox output
1 parent c09022f commit 15653d6

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: python
22
python:
3-
- 3.5
43
- 3.6
54
- 3.7
65
- 3.8
@@ -16,7 +15,7 @@ before_script:
1615
- pip3 install --editable .
1716
script:
1817
- pip3 install -U python-dotenv
19-
- tox
18+
- tox -vv
2019
before_deploy:
2120
- pip3 install bumpversion pypandoc
2221
- sudo apt-get update

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def run_tests(self):
6464
version=__version__,
6565
description='Client library to use the IBM Watson Services',
6666
license='Apache 2.0',
67-
install_requires=['requests>=2.0, <3.0', 'python_dateutil>=2.5.3', 'websocket-client==0.48.0', 'ibm_cloud_sdk_core>=3.3.6'],
67+
install_requires=['requests>=2.0, <3.0', 'python_dateutil>=2.5.3', 'websocket-client==0.48.0', 'ibm_cloud_sdk_core>=3.3.6, == 3.*'],
6868
tests_require=['responses', 'pytest', 'python_dotenv', 'pytest-rerunfailures', 'tox'],
6969
cmdclass={'test': PyTest},
7070
author='IBM Watson',

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, py35, py36, py37
2+
envlist = lint, py36, py37, py38
33

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

0 commit comments

Comments
 (0)