Re: [PATCH] travis.yml: drop python 2.7 (bug 731114)
Brian Dolbec <[email protected]>
| Newsgroups | gmane.linux.gentoo.portage.devel |
|---|---|
| Message-ID | <20200706120534.30a7b095@storm> |
On Mon, 6 Jul 2020 11:42:06 -0700 Zac Medico <[email protected]> wrote: > It should be pretty safe to drop support for python2.7 at this point. > > Bug: https://bugs.gentoo.org/731114 > Signed-off-by: Zac Medico <[email protected]> > --- > .travis.yml | 1 - > tox.ini | 6 ++---- > 2 files changed, 2 insertions(+), 5 deletions(-) > > diff --git a/.travis.yml b/.travis.yml > index 2132c8c87..d2935fdab 100644 > --- a/.travis.yml > +++ b/.travis.yml > @@ -1,7 +1,6 @@ > dist: bionic > language: python > python: > - - 2.7 > - 3.6 > - 3.7 > - 3.8 > diff --git a/tox.ini b/tox.ini > index 79b5b45cb..050a2c455 100644 > --- a/tox.ini > +++ b/tox.ini > @@ -1,14 +1,12 @@ > [tox] > -envlist = py27,py36,py37,py38,py39,pypy3 > +envlist = py36,py37,py38,py39,pypy3 > skipsdist = True > > [testenv] > deps = > pygost > pyyaml > - py27,py36,py37,py38,py39,pypy3: lxml!=4.2.0 > - py27: pyblake2 > - py27: pysha3 > + py36,py37,py38,py39,pypy3: lxml!=4.2.0 > setenv = > PYTHONPATH={toxinidir}/lib > commands = Go for it!