ci: Ignore Python 2 deprecation warning

This commit is contained in:
Anton Maklakov 2020-12-15 12:24:50 +07:00
parent a16d1e8f1a
commit cfcc18719d

View File

@ -30,7 +30,8 @@ IGNORE_WARNS = [
r"changes choice state",
r"crosstool_version_check\.cmake",
r"CryptographyDeprecationWarning",
r"Python 3 versions older than 3.6 are not supported."
r"Python 3 versions older than 3.6 are not supported.",
r"Support for Python 2 is deprecated and will be removed in future versions.",
]
]