From 50aa0dda9b8d74cc17782994b08c0c4100b6b490 Mon Sep 17 00:00:00 2001 From: Mark Jones Date: Tue, 2 Jun 2020 13:41:36 -0400 Subject: [PATCH] Remove Travis settings Travis is no longer used by PyPWA since they switched to a pay model, and our project is produced entirely for free. --- .travis.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0c72a68c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,37 +0,0 @@ -sudo: false -dist: xenial -language: python -cache: pip -python: - - "3.7" - - "3.8" -matrix: - allow_failures: - - python: "3.8" -addons: - apt: - packages: - - "build-essential" - - "gfortran" - - "libatlas-base-dev" - - "libopenblas-dev" - - "liblapack-dev" - - "python-dev" - - "cython" -before_install: - - "pip install --upgrade pip setuptools wheel" - - "pip install --upgrade numpy scipy pandas" - - "pip install --upgrade iminuit nestle ruamel.yaml tabulate appdirs" - - "pip install --upgrade fuzzywuzzy python-Levenshtein" - - "pip install --upgrade coveralls coverage" - - "pip install --upgrade pytest pytest-runner pytest-cov" - - "pip install --upgrade matplotlib" -install: - - "pip install --upgrade -e ." -script: "pytest --cov=PyPWA tests --cov-report=" -after_success: - - coveralls -notifications: - emails: - on_success: change - on_failure: change