Switch from system wheels to bundled ones

This commit is contained in:
Lumir Balhar 2022-02-16 09:04:08 +01:00
commit ca58751035
2 changed files with 109 additions and 13 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\)\)')