End support for Python 2

As planned and advertized, yamllint drops support for Python 2 on 2021.
This commit is contained in:
Adrien Vergé
2021-01-05 08:20:57 +01:00
parent ee4d163ff8
commit a3fc64d134
9 changed files with 8 additions and 55 deletions

View File

@@ -26,15 +26,6 @@ PYTHON = sys.executable or 'python'
class ModuleTestCase(unittest.TestCase):
@classmethod
def setUpClass(cls):
super(ModuleTestCase, cls).setUpClass()
# https://docs.python.org/3/library/unittest.html#deprecated-aliases
if sys.version_info < (3, 2):
cls.assertRegex = cls.assertRegexpMatches
cls.assertRaisesRegex = cls.assertRaisesRegexp
def setUp(self):
self.wd = tempfile.mkdtemp(prefix='yamllint-tests-')