From 2c36df6bf33e42c379fbd8228fbe63c77b3714b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Guimar=C3=A3es=20de=20Medeiros?= Date: Fri, 14 Feb 2020 13:00:35 +0100 Subject: [PATCH] fix python version in tox file: py35 -> py37 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I74cdd7462cd5134b22d0c6b13aafd0e88ef60e1c Signed-off-by: Moisés Guimarães de Medeiros --- microversion_parse/__init__.py | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/microversion_parse/__init__.py b/microversion_parse/__init__.py index 3605ff2..d126ea7 100644 --- a/microversion_parse/__init__.py +++ b/microversion_parse/__init__.py @@ -25,7 +25,7 @@ class Version(collections.namedtuple('Version', 'major minor')): """ def __new__(cls, major, minor): - """Add mix and max version attributes to the tuple.""" + """Add min and max version attributes to the tuple.""" self = super(Version, cls).__new__(cls, major, minor) self.max_version = (-1, 0) self.min_version = (-1, 0) diff --git a/tox.ini b/tox.ini index 0d8a40e..9e7c084 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ minversion = 3.1.1 skipsdist = True # If you want pypy or pypy3, do 'tox -epypy,pypy3', it might work! # And you can get coverage with 'tox -ecover'. -envlist = py36,py35,pep8 +envlist = py36,py37,pep8 ignore_basepython_conflict = True [testenv]