-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.travis.yml
29 lines (28 loc) · 812 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dist: bionic
language: python
python:
- 3.8
- 3.9
matrix:
fast_finish: true
include:
- python: 3.8
before_install:
- sudo apt-get update && sudo apt-get install python3-pip asymptote llvm-10 llvm-10-dev
- python --version
- LLVM_CONFIG=/usr/bin/llvm-config-10 CXXFLAGS=-fPIC python -m pip install llvmlite
- pip3 install numpy
- pip3 install git+https://github.com/mmatera/mathics
- pip3 install ipywidgets
- pip3 install ipykernel
- pip3 install metakernel
- pip3 install jupyter_kernel_test
- pip3 install unittest2
- python -m pip install -e git://github.com/mathics/Mathics.git#egg=Mathics3
- python -m pip install -e git://github.com/Mathics3/pymathics-asy#egg=pymathics-asy
install:
- python setup.py install
script:
- python test.py
notifications:
email: false