Fix for CVE-2021-28861

This commit is contained in:
Lumir Balhar 2022-09-14 12:05:13 +02:00
commit cb74aa18c6
3 changed files with 155 additions and 1 deletions

View file

@ -77,3 +77,9 @@ addFilter(r'\bpython3(\.\d+)?\.(src|spec): (E|W): specfile-error\s+$')
# SPELLING ERRORS
addFilter(r'spelling-error .* en_US (bytecode|pyc|filename|tkinter|namespaces|pytest) ')
# These bundled provides are declared twice, as they're bundled twice
# separately in pip and setuptools.
addFilter(r'useless-provides bundled\(python3dist\(packaging\)\)')
addFilter(r'useless-provides bundled\(python3dist\(setuptools\)\)')
addFilter(r'useless-provides bundled\(python3dist\(six\)\)')