Merge branch 'bugfix/ci_py2_warnings_fix_v4.0' into 'release/v4.0'

ci: Python 2 warnings fix (v4.0)

See merge request espressif/esp-idf!11619
This commit is contained in:
Anton Maklakov
2020-12-15 19:06:33 +08:00
4 changed files with 8 additions and 5 deletions

View File

@@ -187,6 +187,8 @@ library/error\.o\
\|changes choice state\
\|Compiler version is not supported\
\|Toolchain version is not supported\
\|Python 3 versions older than 3\.6 are not supported\.\
\|Support for Python 2 is deprecated and will be removed in future versions\.\
"
sort -u "${LOG_SUSPECTED}" | grep -v "${IGNORE_WARNS}" \

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.",
]
]