Spaces:
Running
Running
File size: 907 Bytes
bed9614 998d3bd d7550d1 998d3bd 91735eb 718935e 91735eb f3fc18e 4ecf2f4 91735eb f3fc18e 91735eb 998d3bd 91735eb d7550d1 4ecf2f4 91735eb 4ecf2f4 bdc71b3 4ecf2f4 bdc71b3 bed9614 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 37 38 |
language: julia
julia:
- 1
jobs:
include:
- name: "Linux"
os: linux
dist: bionic
before_install: sudo apt-get -y install python3-pip python3-setuptools
env:
- PY="sudo python3" PATH=$HOME/.local/bin:$PATH
- name: "macOS"
os: osx
before_install: python3 --version; pip3 --version; sw_vers
env:
- PY=python3 PATH=$HOME/.local/bin:$PATH
- name: "Windows"
os: windows
before_install:
- choco install python
- python -m ensurepip
- python -m pip install --upgrade pip
env:
- PY=python3 PATH=/c/Python37:/c/Python37/Scripts:$PATH
allow_failures:
- os: linux
- os: windows
before_script:
- julia --color=yes -e 'using Pkg; pkg"add Optim; add SpecialFunctions; precompile;"'
script:
- $PY -m pip install numpy pandas
- $PY setup.py install
- $PY test/test.py
|