From 6c9bcf195b6a27f88e8e09d5ff501c683a94facb Mon Sep 17 00:00:00 2001 From: Alexei Chetroi Date: Tue, 15 Sep 2020 11:45:59 -0400 Subject: [PATCH] Drop py36 --- .travis.yml | 6 ++---- tox.ini | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0e871cb..7020c1c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,10 @@ language: python matrix: fast_finish: true include: - - python: "3.6" + - python: "3.7" env: TOXENV=lint - - python: "3.6" + - python: "3.7" env: TOXENV=black - - python: "3.6" - env: TOXENV=py36 - python: "3.7" env: TOXENV=py37 - python: "3.8" diff --git a/tox.ini b/tox.ini index 150de6e..627d269 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py36, py37, py38, lint, black +envlist = py37, py38, lint, black skip_missing_interpreters = True [testenv]