Merge pull request #4112 from qutebrowser/pyup-scheduled-update-2018-08-06
Scheduled weekly dependency update for week 31
This commit is contained in:
commit
254b185385
@ -13,7 +13,6 @@ python-dateutil==2.7.3
|
||||
./scripts/dev/pylint_checkers
|
||||
requests==2.19.1
|
||||
six==1.11.0
|
||||
typed-ast==1.1.0
|
||||
uritemplate==3.0.0
|
||||
urllib3==1.23
|
||||
wrapt==1.10.11
|
||||
|
@ -1,6 +1,6 @@
|
||||
# This file is automatically generated by scripts/dev/recompile_requirements.py
|
||||
|
||||
astroid==2.0.1
|
||||
astroid==2.0.2
|
||||
certifi==2018.4.16
|
||||
chardet==3.0.4
|
||||
github3.py==1.1.0
|
||||
@ -8,12 +8,13 @@ idna==2.7
|
||||
isort==4.3.4
|
||||
lazy-object-proxy==1.3.1
|
||||
mccabe==0.6.1
|
||||
pylint==2.0.1
|
||||
pylint==2.1.1
|
||||
python-dateutil==2.7.3
|
||||
./scripts/dev/pylint_checkers
|
||||
requests==2.19.1
|
||||
six==1.11.0
|
||||
typed-ast==1.1.0
|
||||
typing==3.6.4
|
||||
uritemplate==3.0.0
|
||||
urllib3==1.23
|
||||
wrapt==1.10.11
|
||||
|
@ -4,7 +4,7 @@ atomicwrites==1.1.5
|
||||
attrs==18.1.0
|
||||
backports.functools-lru-cache==1.5
|
||||
beautifulsoup4==4.6.1
|
||||
cheroot==6.3.3
|
||||
cheroot==6.4.0
|
||||
click==6.7
|
||||
# colorama==0.3.9
|
||||
coverage==4.5.1
|
||||
@ -13,18 +13,18 @@ fields==5.0.0
|
||||
Flask==1.0.2
|
||||
glob2==0.6
|
||||
hunter==2.0.2
|
||||
hypothesis==3.66.14
|
||||
hypothesis==3.66.30
|
||||
itsdangerous==0.24
|
||||
# Jinja2==2.10
|
||||
Mako==1.0.7
|
||||
# MarkupSafe==1.0
|
||||
more-itertools==4.2.0
|
||||
more-itertools==4.3.0
|
||||
parse==1.8.4
|
||||
parse-type==0.4.2
|
||||
pluggy==0.7.1
|
||||
py==1.5.4
|
||||
py-cpuinfo==4.0.0
|
||||
pytest==3.6.4
|
||||
pytest==3.6.4 # rq.filter: != 3.7, != 3.7.1
|
||||
pytest-bdd==2.21.0
|
||||
pytest-benchmark==3.1.1
|
||||
pytest-cov==2.5.1
|
||||
@ -32,11 +32,11 @@ pytest-faulthandler==1.5.0
|
||||
pytest-instafail==0.4.0
|
||||
pytest-mock==1.10.0
|
||||
pytest-qt==3.0.0
|
||||
pytest-repeat==0.5.0
|
||||
pytest-repeat==0.6.0
|
||||
pytest-rerunfailures==4.1
|
||||
pytest-travis-fold==1.3.0
|
||||
pytest-xvfb==1.1.0
|
||||
PyVirtualDisplay==0.2.1
|
||||
six==1.11.0
|
||||
vulture==0.28
|
||||
vulture==0.29
|
||||
Werkzeug==0.14.1
|
||||
|
@ -4,7 +4,7 @@ coverage
|
||||
Flask
|
||||
hunter
|
||||
hypothesis
|
||||
pytest
|
||||
pytest<3.7
|
||||
pytest-bdd
|
||||
pytest-benchmark
|
||||
pytest-cov
|
||||
@ -19,3 +19,4 @@ pytest-xvfb
|
||||
vulture
|
||||
|
||||
#@ ignore: Jinja2, MarkupSafe, colorama
|
||||
#@ filter: pytest != 3.7, != 3.7.1
|
||||
|
@ -5,5 +5,5 @@ pluggy==0.7.1
|
||||
py==1.5.4
|
||||
pyparsing==2.2.0
|
||||
six==1.11.0
|
||||
tox==3.1.2
|
||||
tox==3.1.3
|
||||
virtualenv==16.0.0
|
||||
|
@ -1,3 +1,3 @@
|
||||
# This file is automatically generated by scripts/dev/recompile_requirements.py
|
||||
|
||||
vulture==0.28
|
||||
vulture==0.29
|
||||
|
@ -1090,10 +1090,10 @@ class WebEngineTab(browsertab.AbstractTab):
|
||||
# percent encoded content is 2 megabytes minus 30 bytes.
|
||||
self._widget.setHtml(html, base_url)
|
||||
|
||||
def networkaccessmanager(self): # pylint: disable=useless-return
|
||||
def networkaccessmanager(self):
|
||||
return None
|
||||
|
||||
def user_agent(self): # pylint: disable=useless-return
|
||||
def user_agent(self):
|
||||
return None
|
||||
|
||||
def clear_ssl_errors(self):
|
||||
|
@ -576,7 +576,7 @@ def read_autoconfig():
|
||||
"""Read the autoconfig.yml file."""
|
||||
try:
|
||||
config.instance.read_yaml()
|
||||
except configexc.ConfigFileErrors: # pylint: disable=try-except-raise
|
||||
except configexc.ConfigFileErrors:
|
||||
raise # caught in outer block
|
||||
except configexc.Error as e:
|
||||
desc = configexc.ConfigErrorDesc("Error", e)
|
||||
|
@ -246,7 +246,7 @@ class WrapperLayout(QLayout):
|
||||
def sizeHint(self):
|
||||
return self._widget.sizeHint()
|
||||
|
||||
def itemAt(self, _index): # pylint: disable=useless-return
|
||||
def itemAt(self, _index):
|
||||
return None
|
||||
|
||||
def takeAt(self, _index):
|
||||
@ -287,7 +287,7 @@ class PseudoLayout(QLayout):
|
||||
def count(self):
|
||||
return 0
|
||||
|
||||
def itemAt(self, _pos): # pylint: disable=useless-return
|
||||
def itemAt(self, _pos):
|
||||
return None
|
||||
|
||||
def widget(self):
|
||||
|
@ -247,7 +247,7 @@ class TestCycle:
|
||||
commands.config_cycle(opt, '[foo]', '[bar]')
|
||||
assert config_stub.get(opt) == ['foo']
|
||||
|
||||
def test_toggle(self, commands, config_stub):
|
||||
def test_toggle(self, commands, config_stub, yaml_value):
|
||||
"""Run ':config-cycle auto_save.session'.
|
||||
|
||||
Should toggle the value.
|
||||
|
Loading…
Reference in New Issue
Block a user