From e4cdd28d0dcb4ab9ba4a31697b661bfdb2b2b74d Mon Sep 17 00:00:00 2001 From: Pierre Delagrave Date: Thu, 18 Mar 2021 09:54:12 -0400 Subject: [PATCH] Support python 3.6, 3.7, 3.8, add .travis ci file (#4) --- .travis.yml | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4d80a75 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +dist: xenial +python: + - '3.6' + - '3.7' + - '3.8' +install: pip install --ignore-installed -r requirements.txt && pip install --ignore-installed -r requirements-dev.txt +script: + - nosetests diff --git a/setup.py b/setup.py index b82598f..6df0901 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ version=version_data['__version__'], description='A collection of tools to maintain vulnerability databases.', author='Delve Labs inc.', - python_requires='>=3.8.0,<3.9.0', + python_requires='>=3.6.0,<3.9.0', author_email='info@delvelabs.ca', url='https://github.com/delvelabs/openwebvulndb-tools', packages=['openwebvulndb.common', 'openwebvulndb.wordpress'],