From 50f02e6b83be04d650b2b55a42cea6c55b78432e Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Fri, 14 Jun 2019 23:30:38 +0200 Subject: [PATCH] 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. --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index bdab40c..f8b460c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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