From 070ead39515e2a1f307084f79124f86aa36baf28 Mon Sep 17 00:00:00 2001 From: Priyanka Saggu Date: Fri, 14 May 2021 22:51:52 +0530 Subject: [PATCH] drop python2 support - remove python2 from the .travis.yaml file - remove python2 from the tox.ini file Signed-off-by: Priyanka Saggu --- .travis.yml | 10 +--------- tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index b44ec90a..90e08f93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,16 +18,8 @@ jobs: script: ./hack/verify-boilerplate.sh python: 3.7 - stage: test - python: 2.7 - env: TOXENV=py27 - - python: 2.7 - env: TOXENV=py27-functional - - python: 2.7 - env: TOXENV=update-pycodestyle - - python: 3.7 + python: 3.7 env: TOXENV=docs - - python: 2.7 - env: TOXENV=coverage,codecov - python: 3.5 env: TOXENV=py35 - python: 3.5 diff --git a/tox.ini b/tox.ini index 71c4d2d8..37a188f1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,8 @@ [tox] skipsdist = True envlist = - py27, py3{5,6,7,8,9} - py27-functional, py3{5,6,7,8,9}-functional + py3{5,6,7,8,9} + py3{5,6,7,8,9}-functional [testenv] passenv = TOXENV CI TRAVIS TRAVIS_*