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 flake8-tuple==0.2.13
mccabe==0.6.1 mccabe==0.6.1
pathmatch==0.2.1 pathmatch==0.2.1
pep8-naming==0.6.1 pep8-naming==0.7.0
pycodestyle==2.3.1 # rq.filter: < 2.4.0 pycodestyle==2.3.1 # rq.filter: < 2.4.0
pydocstyle==2.1.1 pydocstyle==2.1.1
pyflakes==1.6.0 pyflakes==2.0.0
six==1.11.0 six==1.11.0
snowballstemmer==1.2.1 snowballstemmer==1.2.1
typing==3.6.4 typing==3.6.4

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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