Merge pull request #3938 from qutebrowser/pyup-scheduled-update-2018-05-21

Scheduled weekly dependency update for week 20
This commit is contained in:
Florian Bruhin 2018-05-21 21:31:03 +02:00 committed by GitHub
commit ae06c2cdb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 17 additions and 17 deletions

View File

@ -18,10 +18,10 @@ flake8-tidy-imports==1.1.0
flake8-tuple==0.2.13
mccabe==0.6.1
pathmatch==0.2.1
pep8-naming==0.6.1
pep8-naming==0.7.0
pycodestyle==2.3.1 # rq.filter: < 2.4.0
pydocstyle==2.1.1
pyflakes==1.6.0
pyflakes==2.0.0
six==1.11.0
snowballstemmer==1.2.1
typing==3.6.4

View File

@ -3,6 +3,6 @@
appdirs==1.4.3
packaging==17.1
pyparsing==2.2.0
setuptools==39.1.0
setuptools==39.2.0
six==1.11.0
wheel==0.31.1

View File

@ -1,6 +1,6 @@
# This file is automatically generated by scripts/dev/recompile_requirements.py
astroid==1.6.3
astroid==1.6.4
certifi==2018.4.16
chardet==3.0.4
github3.py==1.1.0
@ -8,7 +8,7 @@ idna==2.6
isort==4.3.4
lazy-object-proxy==1.3.1
mccabe==0.6.1
pylint==1.8.4
pylint==1.9.1
python-dateutil==2.7.3
./scripts/dev/pylint_checkers
requests==2.18.4

View File

@ -2,7 +2,7 @@
attrs==18.1.0
beautifulsoup4==4.6.0
cheroot==6.2.4
cheroot==6.3.1
click==6.7
# colorama==0.3.9
coverage==4.5.1
@ -11,7 +11,7 @@ fields==5.0.0
Flask==1.0.2
glob2==0.6
hunter==2.0.2
hypothesis==3.56.9
hypothesis==3.57.0
itsdangerous==0.24
# Jinja2==2.10
Mako==1.0.7
@ -27,9 +27,9 @@ pytest-bdd==2.21.0
pytest-benchmark==3.1.1
pytest-cov==2.5.1
pytest-faulthandler==1.5.0
pytest-instafail==0.3.0
pytest-instafail==0.4.0
pytest-mock==1.10.0
pytest-qt==2.3.1
pytest-qt==2.3.2
pytest-repeat==0.4.1
pytest-rerunfailures==4.0
pytest-travis-fold==1.3.0

View File

@ -4,4 +4,4 @@ pluggy==0.6.0
py==1.5.3
six==1.11.0
tox==3.0.0
virtualenv==15.2.0
virtualenv==16.0.0

View File

@ -1674,7 +1674,7 @@ class CommandDispatcher:
"""
try:
elem.set_value(text)
except webelem.OrphanedError as e:
except webelem.OrphanedError:
message.error('Edited element vanished')
ed.backup()
except webelem.Error as e:

View File

@ -177,7 +177,7 @@ def data_for_url(url):
except OSError as e:
# FIXME:qtwebengine how to handle this?
raise QuteSchemeOSError(e)
except QuteSchemeError as e:
except QuteSchemeError:
raise
assert mimetype is not None, url

View File

@ -102,7 +102,7 @@ def _parse_yaml_type(name, node):
try:
typ = getattr(configtypes, type_name)
except AttributeError as e:
except AttributeError:
raise AttributeError("Did not find type {} for {}".format(
type_name, name))

View File

@ -573,7 +573,7 @@ def read_autoconfig():
"""Read the autoconfig.yml file."""
try:
config.instance.read_yaml()
except configexc.ConfigFileErrors as e:
except configexc.ConfigFileErrors:
raise # caught in outer block
except configexc.Error as e:
desc = configexc.ConfigErrorDesc("Error", e)

View File

@ -1409,7 +1409,7 @@ class SearchEngineUrl(BaseType):
try:
value.format("")
except (KeyError, IndexError) as e:
except (KeyError, IndexError):
raise configexc.ValidationError(
value, "may not contain {...} (use {{ and }} for literal {/})")
except ValueError as e:

View File

@ -293,7 +293,7 @@ class _CrashDialog(QDialog):
self._paste_text = '\n\n'.join(lines)
try:
user = getpass.getuser()
except Exception as e:
except Exception:
log.misc.exception("Error while getting user")
user = 'unknown'
try:

View File

@ -498,7 +498,7 @@ def send_or_listen(args):
server = IPCServer(socketname)
server.listen()
return server
except AddressInUseError as e:
except AddressInUseError:
# This could be a race condition...
log.init.debug("Got AddressInUseError, trying again.")
time.sleep(0.5)