Skip to content

Commit

Permalink
Update tool dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Jun 25, 2019
1 parent 4130d2f commit 3624326
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions requirements/tools.txt
Expand Up @@ -39,7 +39,7 @@ importlib-metadata==0.18 # via pluggy, pytest
ipython-genutils==0.2.0 # via traitlets
ipython==7.5.0
isort==4.3.20
jedi==0.13.3 # via ipython
jedi==0.14.0 # via ipython
jinja2==2.10.1 # via pyupio, sphinx
lark-parser==0.7.1
lazy-object-proxy==1.4.1 # via astroid
Expand All @@ -48,11 +48,11 @@ mccabe==0.6.1 # via flake8, pylint
mock==3.0.5
more-itertools==5.0.0
mypy-extensions==0.4.1 # via mypy
mypy==0.701
mypy==0.710
numpy==1.16.4
packaging==19.0 # via dparse, pytest, pyupio, safety, sphinx
parso==0.4.0 # via jedi
pbr==5.3.0 # via stevedore
parso==0.5.0 # via jedi
pbr==5.3.1 # via stevedore
pexpect==4.7.0 # via ipython
pickleshare==0.7.5 # via ipython
pip-tools==3.8.0
Expand All @@ -71,7 +71,7 @@ pylint==2.3.1
pyparsing==2.4.0 # via packaging
pytest==4.6.3
python-dateutil==2.8.0
python-gitlab==1.8.0 # via pyupio
python-gitlab==1.9.0 # via pyupio
pytz==2019.1 # via babel, django
pyupgrade==1.19.0
pyupio==1.0.2
Expand All @@ -85,7 +85,7 @@ six==1.12.0 # via astroid, bandit, bleach, dparse, mock, more-iter
smmap2==2.0.5 # via gitdb2
snowballstemmer==1.2.1 # via pydocstyle, sphinx
sphinx-rtd-theme==0.4.3
sphinx==2.1.1
sphinx==2.1.2
sphinxcontrib-applehelp==1.0.1 # via sphinx
sphinxcontrib-devhelp==1.0.1 # via sphinx
sphinxcontrib-htmlhelp==1.0.2 # via sphinx
Expand All @@ -97,15 +97,15 @@ stevedore==1.30.1 # via bandit
tokenize-rt==3.0.1 # via pyupgrade
toml==0.10.0
tox==3.12.1
tqdm==4.32.1 # via pyupio, twine
tqdm==4.32.2 # via pyupio, twine
traitlets==4.3.2 # via ipython
twine==1.13.0
typed-ast==1.3.5 # via astroid, mypy
typed-ast==1.4.0 # via astroid, mypy
urllib3==1.25.3 # via requests
virtualenv==16.6.1 # via tox
wcwidth==0.1.7 # via prompt-toolkit, pytest
webencodings==0.5.1 # via bleach
wrapt==1.11.1 # via astroid, deprecated
wrapt==1.11.2 # via astroid, deprecated
zipp==0.5.1 # via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
Expand Down
2 changes: 1 addition & 1 deletion whole-repo-tests/test_type_hints.py
Expand Up @@ -45,7 +45,7 @@ def get_mypy_analysed_type(fname, val):
# The shell output for `reveal_type([1, 2, 3])` looks like a literal:
# file.py:2: error: Revealed type is 'builtins.list[builtins.int*]'
return (
out.split("error: Revealed type is ")[1]
out.split("Revealed type is ")[1]
.strip()
.strip("'")
.replace("builtins.", "")
Expand Down

0 comments on commit 3624326

Please sign in to comment.