Skip to content

Commit

Permalink
Use bionic distribution in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
urastogi885 authored Mar 9, 2021
1 parent 4f26868 commit da5d5cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@

# Set OS to linux
os: linux
dist: bionic

# Set the build language to Python
language: python

# Set the python version to 3.5
python: 3.5
python: 3.6

before_install:
- sudo apt-get update

# Install the library dependencies
install:
- sudo apt-get install python3
- pip3 install numpy opencv-python
- pip install numpy opencv-python

# Run python scripts
script:
- python3 main.py
- python main.py

0 comments on commit da5d5cb

Please sign in to comment.