File size: 898 Bytes
bed9614
998d3bd
 
d7550d1
998d3bd
91735eb
 
 
718935e
91735eb
73fb236
91735eb
 
 
73fb236
91735eb
 
 
c765a2b
91735eb
73fb236
91735eb
4ecf2f4
 
bdc71b3
c765a2b
 
bdc71b3
4ecf2f4
bdc71b3
bed9614
c765a2b
73fb236
86c866a
d7550d1
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
30
31
32
33
34
35
36
language: julia
julia:
    - 1

jobs:
  include:
    - name: "Linux"
      os: linux
      dist: bionic
      before_install: sudo apt-get -y install python3-pip python3-setuptools
      env: SETUPPREFIX="--user"
    - name: "macOS"
      os: osx
      before_install: python3 --version; pip3 --version; sw_vers
      env: SETUPPREFIX=""
    - name: "Windows"
      os: windows
      before_install:
        - choco install python --version 3.8.0
        - python -m pip install --upgrade pip
      env: PATH=/c/Python38:/c/Python38/Scripts:$PATH SETUPPREFIX=""
  allow_failures:
    - os: linux
    - os: windows

install: pip3 install --upgrade pip

before_script:
    - julia --color=yes -e 'using Pkg; pkg"add Optim; add SpecialFunctions; precompile;"'

script:
    - pip3 install numpy pandas
    - python3 setup.py install $SETUPPREFIX
    - PATH=$HOME/.local/bin:$PATH python3 test/test.py