Merge pull request #3074 from qutebrowser/pyup-scheduled-update-10-09-2017

Scheduled weekly dependency update for week 41
This commit is contained in:
Florian Bruhin 2017-10-09 22:31:29 +02:00 committed by GitHub
commit c9c827aa3e
4 changed files with 10 additions and 10 deletions

View File

@ -8,7 +8,7 @@ idna==2.6
isort==4.2.15
lazy-object-proxy==1.3.1
mccabe==0.6.1
pylint==1.7.2
pylint==1.7.4
./scripts/dev/pylint_checkers
requests==2.18.4
six==1.11.0

View File

@ -11,16 +11,16 @@ fields==5.0.0
Flask==0.12.2
glob2==0.6
hunter==2.0.1
hypothesis==3.30.3
hypothesis==3.32.0
itsdangerous==0.24
# Jinja2==2.9.6
Mako==1.0.7
# MarkupSafe==1.0
parse==1.8.2
parse-type==0.4.1
parse-type==0.4.2
py==1.4.34
py-cpuinfo==3.3.0
pytest==3.2.2
pytest==3.2.3
pytest-bdd==2.18.2
pytest-benchmark==3.1.1
pytest-catchlog==1.2.2
@ -28,7 +28,7 @@ pytest-cov==2.5.1
pytest-faulthandler==1.3.1
pytest-instafail==0.3.0
pytest-mock==1.6.3
pytest-qt==2.2.0
pytest-qt==2.2.1
pytest-repeat==0.4.1
pytest-rerunfailures==3.1
pytest-travis-fold==1.2.0

View File

@ -2,5 +2,5 @@
pluggy==0.5.2
py==1.4.34
tox==2.8.2
tox==2.9.1
virtualenv==15.1.0

View File

@ -1074,7 +1074,7 @@ class CommandDispatcher:
@cmdutils.register(instance='command-dispatcher', scope='window')
@cmdutils.argument('index', choices=['last'])
@cmdutils.argument('count', count=True)
def tab_focus(self, index: typing.Union[str, int]=None, count=None):
def tab_focus(self, index: typing.Union[str, int] = None, count=None):
"""Select the tab given as argument/[count].
If neither count nor index are given, it behaves like tab-next.
@ -1111,7 +1111,7 @@ class CommandDispatcher:
@cmdutils.register(instance='command-dispatcher', scope='window')
@cmdutils.argument('index', choices=['+', '-'])
@cmdutils.argument('count', count=True)
def tab_move(self, index: typing.Union[str, int]=None, count=None):
def tab_move(self, index: typing.Union[str, int] = None, count=None):
"""Move the current tab according to the argument and [count].
If neither is given, move it to the first position.
@ -1658,7 +1658,7 @@ class CommandDispatcher:
hide=True)
@cmdutils.argument('filter_', choices=['id'])
def click_element(self, filter_: str, value, *,
target: usertypes.ClickTarget=
target: usertypes.ClickTarget =
usertypes.ClickTarget.normal,
force_event=False):
"""Click the element matching the given filter.
@ -2011,7 +2011,7 @@ class CommandDispatcher:
@cmdutils.register(instance='command-dispatcher', scope='window',
maxsplit=0, no_cmd_split=True)
def jseval(self, js_code, file=False, quiet=False, *,
world: typing.Union[usertypes.JsWorld, int]=None):
world: typing.Union[usertypes.JsWorld, int] = None):
"""Evaluate a JavaScript string.
Args: