.travis.yml: don't install opt deps on py 3.4 and 3.5.

feedparser 6 doesn't support these versions.
This commit is contained in:
Valentin Lorentz 2020-09-19 10:29:41 +02:00
parent 0102d64cf4
commit 49e03decc4

View File

@ -15,10 +15,10 @@ notifications:
matrix: matrix:
include: include:
- python: "3.4" - python: "3.4"
env: WITH_OPT_DEPS=true env: WITH_OPT_DEPS=false
dist: trusty dist: trusty
- python: "3.5" - python: "3.5"
env: WITH_OPT_DEPS=true env: WITH_OPT_DEPS=false
dist: trusty dist: trusty
- python: "3.6" - python: "3.6"
env: WITH_OPT_DEPS=true env: WITH_OPT_DEPS=true