Merge pull request #7807 from qutebrowser/update-dependencies

Update dependencies
This commit is contained in:
toofar 2023-08-02 21:29:48 +12:00 committed by GitHub
commit 5344163f4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 16 additions and 16 deletions

View File

@ -6,7 +6,7 @@ bump2version==1.0.1
certifi==2023.7.22
cffi==1.15.1
charset-normalizer==3.2.0
cryptography==41.0.2
cryptography==41.0.3
docutils==0.20.1
github3.py==4.0.1
hunter==3.6.1
@ -19,7 +19,7 @@ keyring==24.2.0
manhole==1.8.0
markdown-it-py==3.0.0
mdurl==0.1.2
more-itertools==9.1.0
more-itertools==10.0.0
packaging==23.1
pkginfo==1.9.6
ply==3.11
@ -34,7 +34,7 @@ readme-renderer==40.0
requests==2.31.0
requests-toolbelt==1.0.0
rfc3986==2.0.0
rich==13.4.2
rich==13.5.2
SecretStorage==3.3.3
sip==6.7.10
six==1.16.0

View File

@ -1,7 +1,7 @@
# This file is automatically generated by scripts/dev/recompile_requirements.py
attrs==23.1.0
flake8==6.0.0
flake8==6.1.0
flake8-bugbear==23.7.10
flake8-builtins==2.1.0
flake8-comprehensions==3.14.0
@ -16,8 +16,8 @@ flake8-tidy-imports==4.10.0
flake8-tuple==0.4.1
mccabe==0.7.0
pep8-naming==0.13.3
pycodestyle==2.10.0
pycodestyle==2.11.0
pydocstyle==6.3.0
pyflakes==3.0.1
pyflakes==3.1.0
six==1.16.0
snowballstemmer==2.2.0

View File

@ -4,7 +4,7 @@ astroid==2.15.6
certifi==2023.7.22
cffi==1.15.1
charset-normalizer==3.2.0
cryptography==41.0.2
cryptography==41.0.3
dill==0.3.7
github3.py==4.0.1
idna==3.4
@ -12,16 +12,16 @@ isort==5.12.0
lazy-object-proxy==1.9.0
mccabe==0.7.0
pefile==2023.2.7
platformdirs==3.9.1
platformdirs==3.10.0
pycparser==2.21
PyJWT==2.8.0
pylint==2.17.4
pylint==2.17.5
python-dateutil==2.8.2
./scripts/dev/pylint_checkers
requests==2.31.0
six==1.16.0
tomli==2.0.1
tomlkit==0.11.8
tomlkit==0.12.1
typing_extensions==4.7.1
uritemplate==4.1.1
# urllib3==2.0.4

View File

@ -15,7 +15,7 @@ Pygments==2.15.1
pytz==2023.3
requests==2.31.0
snowballstemmer==2.2.0
Sphinx==7.0.1
Sphinx==7.1.1
sphinxcontrib-applehelp==1.0.4
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.1

View File

@ -23,7 +23,7 @@ jaraco.functools==3.8.0
Mako==1.2.4
manhole==1.8.0
# MarkupSafe==2.1.3
more-itertools==9.1.0
more-itertools==10.0.0
packaging==23.1
parse==1.19.1
parse-type==0.6.2

View File

@ -7,11 +7,11 @@ distlib==0.3.7
filelock==3.12.2
packaging==23.1
pip==23.2.1
platformdirs==3.9.1
platformdirs==3.10.0
pluggy==1.2.0
pyproject-api==1.5.3
setuptools==68.0.0
tomli==2.0.1
tox==4.6.4
virtualenv==20.24.1
virtualenv==20.24.2
wheel==0.41.0

View File

@ -1,5 +1,5 @@
# This file is automatically generated by scripts/dev/recompile_requirements.py
pathspec==0.11.1
pathspec==0.11.2
PyYAML==6.0.1
yamllint==1.32.0

View File

@ -150,7 +150,7 @@ def partial_compare(val1, val2, *, indent=0):
if val2 is Ellipsis:
print_i("Ignoring ellipsis comparison", indent, error=True)
return PartialCompareOutcome()
elif type(val1) != type(val2): # pylint: disable=unidiomatic-typecheck
elif type(val1) is not type(val2):
outcome = PartialCompareOutcome(
"Different types ({}, {}) -> False".format(type(val1).__name__,
type(val2).__name__))