From 0d60e905a05a0ca584fea0fa3a5ddc05715d8a53 Mon Sep 17 00:00:00 2001 From: Pavel Trakhtman Date: Mon, 10 Aug 2020 16:15:13 -0500 Subject: [PATCH] Updated to indicate python 3.6 support (#77) * Updated to indicate python 3.6 support Co-authored-by: Anton B --- .travis.yml | 6 ++++++ setup.py | 3 ++- tox.ini | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) 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