We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9f337e commit cd07137Copy full SHA for cd07137
.travis.yml
@@ -1,15 +1,14 @@
1
language: python
2
-matrix:
+jobs:
3
include:
4
- - name: "Ubuntu 20.04 Job"
5
- - python:
6
- - "3.8"
7
- - os: linux
8
- - dist: focal
+ - name: "Python 3.8 on Focal"
+ os: linux
+ dist: focal
+ python: 3.8
9
10
install:
11
- sudo bash setup.sh
12
script:
13
- sudo bash run_tests.sh
14
notifications:
15
- email: false
+ email: false
setup.sh
@@ -71,6 +71,8 @@ echo "${green} ${activated_python_version} activated!${reset}"
71
72
# Install python requirements
73
pip3 install --upgrade cython
74
+pip3 install wheel
75
+python setup.py bdist_wheel
76
pip3 install -r $JARVIS_DIR/requirements.txt
77
78
RESULT=$?
0 commit comments