Skip to content
This repository has been archived by the owner on Jun 9, 2020. It is now read-only.

Travis CI: Drop EOL versions on Python and add 3.7 and 3.8-dev #162

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
language: python
dist: xenial # required for Python >= 3.7 on Travis CI
python:
- "nightly"
- "3.7-dev"
- "3.6-dev"
- "3.8-dev"
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
matrix:
fast_finish: true
allow_failures:
- python: "nightly"
- python: "3.7-dev"
- python: "3.6-dev"
- python: "3.8-dev"
- python: "3.7"
install:
- pip install --install-option='--no-cython-compile' Cython
- pip install -r dev_requirements.txt
Expand Down