Merge pull request #7120 from qutebrowser/update-dependencies
Update dependencies
This commit is contained in:
commit
991d300a08
|
|
@ -4,5 +4,5 @@ build==0.7.0
|
|||
check-manifest==0.48
|
||||
packaging==21.3
|
||||
pep517==0.12.0
|
||||
pyparsing==3.0.7
|
||||
pyparsing==3.0.8
|
||||
tomli==2.0.1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This file is automatically generated by scripts/dev/recompile_requirements.py
|
||||
|
||||
bleach==4.1.0
|
||||
bleach==5.0.0
|
||||
build==0.7.0
|
||||
bump2version==1.0.1
|
||||
certifi==2021.10.8
|
||||
|
|
@ -23,14 +23,14 @@ pycparser==2.21
|
|||
Pygments==2.11.2
|
||||
PyJWT==2.3.0
|
||||
Pympler==1.0.1
|
||||
pyparsing==3.0.7
|
||||
pyparsing==3.0.8
|
||||
PyQt-builder==1.12.2
|
||||
python-dateutil==2.8.2
|
||||
readme-renderer==34.0
|
||||
requests==2.27.1
|
||||
requests-toolbelt==0.9.1
|
||||
rfc3986==2.0.0
|
||||
rich==12.1.0
|
||||
rich==12.2.0
|
||||
SecretStorage==3.3.1
|
||||
sip==6.5.1
|
||||
six==1.16.0
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ pefile==2021.9.3
|
|||
platformdirs==2.5.1
|
||||
pycparser==2.21
|
||||
PyJWT==2.3.0
|
||||
pylint==2.13.4
|
||||
pylint==2.13.5
|
||||
python-dateutil==2.8.2
|
||||
./scripts/dev/pylint_checkers
|
||||
requests==2.27.1
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ Jinja2==3.1.1
|
|||
MarkupSafe==2.1.1
|
||||
packaging==21.3
|
||||
Pygments==2.11.2
|
||||
pyparsing==3.0.7
|
||||
pyparsing==3.0.8
|
||||
pytz==2022.1
|
||||
requests==2.27.1
|
||||
snowballstemmer==2.2.0
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# This file is automatically generated by scripts/dev/recompile_requirements.py
|
||||
|
||||
attrs==21.4.0
|
||||
beautifulsoup4==4.10.0
|
||||
beautifulsoup4==4.11.1
|
||||
certifi==2021.10.8
|
||||
charset-normalizer==2.0.12
|
||||
cheroot==8.6.0
|
||||
|
|
@ -12,8 +12,8 @@ filelock==3.6.0
|
|||
Flask==2.1.1
|
||||
glob2==0.7
|
||||
hunter==3.4.3
|
||||
hypothesis==6.41.0
|
||||
icdiff==2.0.4
|
||||
hypothesis==6.42.3
|
||||
icdiff==2.0.5
|
||||
idna==3.3
|
||||
importlib-metadata==4.11.3
|
||||
iniconfig==1.1.1
|
||||
|
|
@ -32,7 +32,7 @@ pprintpp==0.4.0
|
|||
py==1.11.0
|
||||
py-cpuinfo==8.0.0
|
||||
Pygments==2.11.2
|
||||
pyparsing==3.0.7
|
||||
pyparsing==3.0.8
|
||||
pytest==7.1.1
|
||||
pytest-bdd==4.1.0
|
||||
pytest-benchmark==3.4.1
|
||||
|
|
@ -51,7 +51,7 @@ requests==2.27.1
|
|||
requests-file==1.5.1
|
||||
six==1.16.0
|
||||
sortedcontainers==2.4.0
|
||||
soupsieve==2.3.1
|
||||
soupsieve==2.3.2
|
||||
tldextract==3.2.0
|
||||
toml==0.10.2
|
||||
tomli==2.0.1
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ pip==22.0.4
|
|||
platformdirs==2.5.1
|
||||
pluggy==1.0.0
|
||||
py==1.11.0
|
||||
pyparsing==3.0.7
|
||||
setuptools==61.3.1
|
||||
pyparsing==3.0.8
|
||||
setuptools==62.1.0
|
||||
six==1.16.0
|
||||
toml==0.10.2
|
||||
tox==3.24.5
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ def _parse_file(test_name):
|
|||
with file_path.open('r', encoding='utf-8') as html:
|
||||
soup = bs4.BeautifulSoup(html, 'html.parser')
|
||||
|
||||
comment = str(soup.find(text=lambda text: isinstance(text, bs4.Comment)))
|
||||
comment = str(soup.find(string=lambda text: isinstance(text, bs4.Comment)))
|
||||
|
||||
if comment is None:
|
||||
raise InvalidFile(test_name, "no comment found")
|
||||
|
|
|
|||
Loading…
Reference in New Issue