Spaces:
Sleeping
Sleeping
File size: 840 Bytes
bed9614 998d3bd d7550d1 998d3bd 91735eb 718935e 91735eb 23e6876 91735eb ad7c290 91735eb c765a2b 91735eb ad7c290 bdc71b3 c765a2b bdc71b3 4ecf2f4 bdc71b3 bed9614 c765a2b ad7c290 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 |
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=python3 SETUPPREFIX="--user"
- name: "macOS"
os: osx
before_install: python3 --version; pip3 --version; sw_vers
env: PY=python3
- 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 PY=python
install: pip3 install --upgrade pip
before_script:
- julia --color=yes -e 'using Pkg; pkg"add Optim; add SpecialFunctions; precompile;"'
script:
- pip3 install numpy pandas
- $PY setup.py install $SETUPPREFIX
- PATH=$HOME/.local/bin:$PATH $PY test/test.py
|