Merge branch 'update-dependencies'

This commit is contained in:
Florian Bruhin 2022-05-10 14:47:46 +02:00
commit f2c969da58
7 changed files with 12 additions and 12 deletions

View File

@ -7,7 +7,7 @@ certifi==2021.10.8
cffi==1.15.0
charset-normalizer==2.0.12
commonmark==0.9.1
cryptography==37.0.1
cryptography==37.0.2
docutils==0.18.1
github3.py==3.2.0
hunter==3.4.3
@ -31,7 +31,7 @@ readme-renderer==35.0
requests==2.27.1
requests-toolbelt==0.9.1
rfc3986==2.0.0
rich==12.3.0
rich==12.4.1
SecretStorage==3.3.2
sip==6.6.1
six==1.16.0

View File

@ -15,7 +15,7 @@ flake8-plugin-utils==1.3.2
flake8-polyfill==1.0.2
flake8-pytest-style==1.6.0
flake8-string-format==0.3.0
flake8-tidy-imports==4.6.0
flake8-tidy-imports==4.7.0
flake8-tuple==0.4.1
mccabe==0.6.1
pep8-naming==0.12.1

View File

@ -1,10 +1,10 @@
# This file is automatically generated by scripts/dev/recompile_requirements.py
astroid==2.11.2
astroid==2.11.4
certifi==2021.10.8
cffi==1.15.0
charset-normalizer==2.0.12
cryptography==37.0.1
cryptography==37.0.2
dill==0.3.4
future==0.18.2
github3.py==3.2.0
@ -16,7 +16,7 @@ pefile==2021.9.3
platformdirs==2.5.2
pycparser==2.21
PyJWT==2.3.0
pylint==2.13.5
pylint==2.13.8
python-dateutil==2.8.2
./scripts/dev/pylint_checkers
requests==2.27.1
@ -26,4 +26,4 @@ typed-ast==1.5.3 ; python_version<"3.8"
typing_extensions==4.2.0
uritemplate==4.1.1
# urllib3==1.26.9
wrapt==1.14.0
wrapt==1.14.1

View File

@ -1,6 +1,4 @@
pylint
# WORKAROUND for https://github.com/PyCQA/pylint/issues/6438#issuecomment-1108747642
astroid != 2.11.3
./scripts/dev/pylint_checkers
requests
github3.py

View File

@ -12,7 +12,7 @@ filelock==3.6.0
Flask==2.1.2
glob2==0.7
hunter==3.4.3
hypothesis==6.46.1
hypothesis==6.46.2
icdiff==2.0.5
idna==3.3
importlib-metadata==4.11.3
@ -23,7 +23,7 @@ jaraco.functools==3.5.0
Mako==1.2.0
manhole==1.8.0
# MarkupSafe==2.1.1
more-itertools==8.12.0
more-itertools==8.13.0
packaging==21.3
parse==1.19.0
parse-type==0.6.0
@ -52,7 +52,7 @@ requests-file==1.5.1
six==1.16.0
sortedcontainers==2.4.0
soupsieve==2.3.2.post1
tldextract==3.2.1
tldextract==3.3.0
toml==0.10.2
tomli==2.0.1
urllib3==1.26.9

View File

@ -85,6 +85,7 @@ class Throttle(QObject):
(cur_time_ms - self._last_call_ms))
# Disconnect any existing calls, continue if no connections.
try:
# pylint: disable=no-value-for-parameter
self._timer.timeout.disconnect()
except TypeError:
pass

View File

@ -223,6 +223,7 @@ class TestAll:
"""Patch aliases so Command works."""
config_stub.val.aliases = {}
# pylint: disable-next=too-many-function-args
@pytest.fixture(params=list(gen_classes()))
def klass(self, request):
return request.param