Skip to content

Commit

Permalink
Setup Travis (#4)
Browse files Browse the repository at this point in the history
Add Travis config
  • Loading branch information
Maxim Zhiltsov authored Sep 8, 2020
1 parent e855770 commit 0f136a7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
language: python

cache: pip

python:
- '3.6'
- '3.7'
- '3.8'

matrix:
include:
- dist: xenial

- dist: bionic
python: '3.6'
- dist: bionic
python: '3.7'
- dist: bionic
python: '3.8'

install:
- pip install -e ./

# plugins
- pip install tensorflow

script:
- python -m unittest discover -v

- datum -h
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ def find_version(file_path=None):
],
python_requires='>=3.5',
install_requires=[
'attrs',
'attrs>=19.3.0',
'defusedxml',
'GitPython',
'lxml',
'matplotlib',
'numpy',
'numpy>=1.17.3',
'opencv-python',
'Pillow',
'pycocotools',
Expand Down

0 comments on commit 0f136a7

Please sign in to comment.