-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f26868
commit da5d5cb
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |