https://github.com/antoinecarme/pyaf
Raw File
Tip revision: 44a1b655215c244221287c31012ae48cc115b7ce authored by Antoine Carme on 30 December 2020, 22:55:39 UTC
Future Warning regarding DateTime_Functions - series.dt.weekofyear #153
Tip revision: 44a1b65
.travis.yml
dist: xenial

language: python
python:
    - 3.8

before_install:
    - sudo apt-get install -y graphviz

cache:
directories:
- $HOME/.cache/matplotlib

install: 
    pip install numpy scipy pandas sklearn matplotlib pydot dill sqlalchemy jupyter xgboost ipython

script: 
    - export PYTHONPATH=$PYTHONPATH:..
    - df
    - free
    - cat /proc/cpuinfo
    - mkdir -p logs
    - rm -rf ~/.matplotlib
    - rm -rf ~/.cache/matplotlib
    - rm -rf ~/.matplotlib/fontList.cache  
    - fc-cache 
    - python ./tests/bugs/issue_36/display_version_info.py
    - python tests/demos/demo1.py
    - python tests/func/test_ozone.py
    - python tests/func/test_air_passengers.py
    - make PYTHON=python -f tests/Makefile build-test
    - python scripts/upload_to_chunk.io.py
    - pip install .
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/sample_code.ipynb
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/PyAF_Introduction.ipynb
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/PyAF_Exogenous.ipynb
    
back to top