Skip to content

Commit

Permalink
Update pinned dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed May 1, 2022
1 parent 280d52e commit c25cf6a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion requirements/coverage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ backports-zoneinfo==0.2.1
# via -r requirements/coverage.in
black==22.3.0
# via -r requirements/coverage.in
click==8.1.2
click==8.1.3
# via
# -r requirements/coverage.in
# black
Expand Down
24 changes: 12 additions & 12 deletions requirements/tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
alabaster==0.7.12
# via sphinx
asgiref==3.5.0
asgiref==3.5.1
# via django
astor==0.8.1
# via flake8-simplify
Expand Down Expand Up @@ -39,7 +39,7 @@ cffi==1.15.0
# via cryptography
charset-normalizer==2.0.12
# via requests
click==8.1.2
click==8.1.3
# via
# black
# pip-tools
Expand All @@ -51,7 +51,7 @@ commonmark==0.9.1
# via rich
coverage==6.3.2
# via -r requirements/tools.in
cryptography==36.0.2
cryptography==37.0.1
# via secretstorage
decorator==5.1.1
# via ipython
Expand Down Expand Up @@ -93,7 +93,7 @@ flake8-2020==1.6.1
# via -r requirements/tools.in
flake8-bandit==3.0.0
# via -r requirements/tools.in
flake8-bugbear==22.3.23
flake8-bugbear==22.4.25
# via -r requirements/tools.in
flake8-builtins==1.5.3
# via -r requirements/tools.in
Expand Down Expand Up @@ -140,7 +140,7 @@ importlib-metadata==4.11.3
# twine
iniconfig==1.1.1
# via pytest
ipython==8.2.0
ipython==8.3.0
# via -r requirements/tools.in
isort==5.10.1
# via shed
Expand All @@ -150,7 +150,7 @@ jeepney==0.8.0
# via
# keyring
# secretstorage
jinja2==3.1.1
jinja2==3.1.2
# via sphinx
keyring==23.5.0
# via twine
Expand All @@ -166,7 +166,7 @@ matplotlib-inline==0.1.3
# via ipython
mccabe==0.6.1
# via flake8
mypy==0.942
mypy==0.950
# via -r requirements/tools.in
mypy-extensions==0.4.3
# via
Expand Down Expand Up @@ -226,15 +226,15 @@ pyflakes==2.4.0
# via
# autoflake
# flake8
pygments==2.11.2
pygments==2.12.0
# via
# ipython
# readme-renderer
# rich
# sphinx
pyparsing==3.0.8
# via packaging
pyright==1.1.239
pyright==1.1.242
# via -r requirements/tools.in
pytest==7.1.2
# via -r requirements/tools.in
Expand Down Expand Up @@ -262,7 +262,7 @@ restructuredtext-lint==1.4.0
# via -r requirements/tools.in
rfc3986==2.0.0
# via twine
rich==12.2.0
rich==12.3.0
# via twine
secretstorage==3.3.2
# via keyring
Expand Down Expand Up @@ -340,9 +340,9 @@ types-click==7.1.8
# via -r requirements/tools.in
types-pkg-resources==0.1.3
# via -r requirements/tools.in
types-pytz==2021.3.6
types-pytz==2021.3.7
# via -r requirements/tools.in
types-redis==4.1.22
types-redis==4.2.0
# via -r requirements/tools.in
typing-extensions==4.2.0
# via
Expand Down
5 changes: 4 additions & 1 deletion whole-repo-tests/test_mypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ def get_mypy_output(fname, *extra_args):


def get_mypy_analysed_type(fname, val):
out = get_mypy_output(fname)
out = get_mypy_output(fname).rstrip()
msg = "Success: no issues found in 1 source file"
if out.endswith(msg):
out = out[: len(msg)]
assert len(out.splitlines()) == 1
# See https://mypy.readthedocs.io/en/latest/common_issues.html#reveal-type
# The shell output for `reveal_type([1, 2, 3])` looks like a literal:
Expand Down

0 comments on commit c25cf6a

Please sign in to comment.