diff --git a/.travis.yml b/.travis.yml index 4ddd71a..432efa8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,12 @@ jobs: python: 3.8 install: pip install -U tox-travis script: tox + - python: 3.6 + install: pip install -U tox-travis + script: tox + - python: 3.7 + install: pip install -U tox-travis + script: tox - stage: test_doc python: 3.8 install: pip install -r docs/requirements.txt diff --git a/setup.py b/setup.py index c9c24c2..329da06 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ license='MIT license', author='Alert Logic Inc.', author_email='devsupport@alertlogic.com', - python_requires='>=3.7', + python_requires='>=3.6', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', @@ -47,6 +47,7 @@ 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', + 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8' ], diff --git a/tox.ini b/tox.ini index 9dca391..0b1eb13 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,11 @@ [tox] -envlist = py37, py38, flake8 +envlist = py36, py37, py38, flake8 [travis] python = 3.8: py38 3.7: py37 + 3.6: py36 [testenv:flake8] basepython = python