diff --git a/.travis.yml b/.travis.yml index d3cc13a76..e40cb2a51 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,8 @@ matrix: env: TOX_ENV=py36 - python: "3.7" env: TOX_ENV=py37 + - python: "3.8" + env: TOX_ENV=py38 - python: "pypy3.5" env: TOX_ENV=pypy3 - python: "3.6" diff --git a/README.rst b/README.rst index cdc376753..535b54597 100644 --- a/README.rst +++ b/README.rst @@ -124,7 +124,7 @@ If you are using the library directly in python, you can do something like this. System Requirements ------------------- -* Python 3.5, 3.6, or 3.7. +* Python 3.5, 3.6, 3.7, or 3.8. * A valid SoftLayer API username and key. * A connection to SoftLayer's private network is required to use our private network API endpoints. diff --git a/setup.py b/setup.py index e254b25c7..65b1d5c44 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,7 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], diff --git a/tox.ini b/tox.ini index b0d521ac9..22af57229 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37,pypy3,analysis,coverage +envlist = py35,py36,py37,py38,pypy3,analysis,coverage [flake8]