Skip to content

Commit

Permalink
Support python 3.6, 3.7, 3.8, add .travis ci file (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Delagrave authored Mar 18, 2021
1 parent 0c94a9a commit e4cdd28
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down

0 comments on commit e4cdd28

Please sign in to comment.