Reduce the number of CI jobs

Since we only support Python 3.5+ anyway there's no need to install
typing and installing it doesn't matter anyway since it's built-in.
This commit is contained in:
Jakub Stasiak 2019-06-14 23:30:38 +02:00
parent 44f64c4ca3
commit 50f02e6b83
1 changed files with 1 additions and 4 deletions

View File

@ -6,16 +6,13 @@ python:
- "3.6"
- "nightly"
- "pypy3.5-5.8.0"
env:
- TYPING_VERSION="<3.5.3"
- TYPING_VERSION=">=3.5.3"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade coveralls pytest "typing$TYPING_VERSION" "pytest-cov>=2.5.1" dataclasses
- pip install --upgrade coveralls pytest "pytest-cov>=2.5.1" dataclasses
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only