From 52d89048702d9af62a2561523450416076026f67 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 8 Dec 2020 10:41:36 +0200 Subject: [PATCH] Remove .travis.yml They changed their free tier and I might as well use GitHub Actions for ILRI stuff anyways. --- .travis.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6d057d1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -os: linux -arch: arm64-graviton2 -dist: focal -language: python -python: - - "3.6" - - "3.7" - - "3.8" - - "3.9" - - "nightly" -jobs: - allow_failures: - - python: "nightly" -install: - - "pip install -r requirements.txt" - - "pip install -r requirements-dev.txt" -script: pytest - -# vim: ts=2 sw=2 et