Skip to content

Commit

Permalink
Reduce the number of CI jobs
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jstasiak committed Jun 14, 2019
1 parent 44f64c4 commit 50f02e6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 50f02e6

Please sign in to comment.