Skip to content

Commit f080371

Browse files
committed
Add testing/CI for python 3.8
1 parent 3d5e025 commit f080371

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ matrix:
1010
env: TOX_ENV=py36
1111
- python: "3.7"
1212
env: TOX_ENV=py37
13+
- python: "3.8"
14+
env: TOX_ENV=py38
1315
- python: "pypy3.5"
1416
env: TOX_ENV=pypy3
1517
- python: "3.6"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ If you are using the library directly in python, you can do something like this.
124124
125125
System Requirements
126126
-------------------
127-
* Python 3.5, 3.6, or 3.7.
127+
* Python 3.5, 3.6, 3.7, or 3.8.
128128
* A valid SoftLayer API username and key.
129129
* A connection to SoftLayer's private network is required to use
130130
our private network API endpoints.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
'Programming Language :: Python :: 3.5',
5252
'Programming Language :: Python :: 3.6',
5353
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
5455
'Programming Language :: Python :: Implementation :: CPython',
5556
'Programming Language :: Python :: Implementation :: PyPy',
5657
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35,py36,py37,pypy3,analysis,coverage
2+
envlist = py35,py36,py37,py38,pypy3,analysis,coverage
33

44

55
[flake8]

0 commit comments

Comments
 (0)