Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the python-requirements group across 1 directory with 6 updates #5476

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ charset-normalizer==3.3.2
# requests
colorama==0.4.6
# via tox
cryptography==42.0.5
cryptography==42.0.7
# via -r typing.txt
distlib==0.3.8
# via virtualenv
Expand Down Expand Up @@ -72,7 +72,7 @@ markupsafe==2.1.5
# via
# -r docs.txt
# jinja2
mypy==1.9.0
mypy==1.10.0
# via -r typing.txt
mypy-extensions==1.0.0
# via
Expand All @@ -93,13 +93,13 @@ packaging==24.0
# pytest
# sphinx
# tox
pallets-sphinx-themes==2.1.2
pallets-sphinx-themes==2.1.3
# via -r docs.txt
platformdirs==4.2.0
# via
# tox
# virtualenv
pluggy==1.4.0
pluggy==1.5.0
# via
# -r tests.txt
# -r typing.txt
Expand All @@ -118,9 +118,9 @@ pygments==2.17.2
# sphinx-tabs
pyproject-api==1.6.1
# via tox
pyright==1.1.359
pyright==1.1.361
# via -r typing.txt
pytest==8.1.1
pytest==8.2.0
# via
# -r tests.txt
# -r typing.txt
Expand Down Expand Up @@ -172,7 +172,7 @@ sphinxcontrib-serializinghtml==1.1.10
# via
# -r docs.txt
# sphinx
tox==4.14.2
tox==4.15.0
# via -r dev.in
types-contextvars==2.4.7.3
# via -r typing.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ packaging==24.0
# via
# pallets-sphinx-themes
# sphinx
pallets-sphinx-themes==2.1.2
pallets-sphinx-themes==2.1.3
# via -r docs.in
pygments==2.17.2
# via
Expand Down
4 changes: 2 additions & 2 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ iniconfig==2.0.0
# via pytest
packaging==24.0
# via pytest
pluggy==1.4.0
pluggy==1.5.0
# via pytest
pytest==8.1.1
pytest==8.2.0
# via -r tests.in
python-dotenv==1.0.1
# via -r tests.in
10 changes: 5 additions & 5 deletions requirements/typing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ asgiref==3.8.1
# via -r typing.in
cffi==1.16.0
# via cryptography
cryptography==42.0.5
cryptography==42.0.7
# via -r typing.in
iniconfig==2.0.0
# via pytest
mypy==1.9.0
mypy==1.10.0
# via -r typing.in
mypy-extensions==1.0.0
# via mypy
nodeenv==1.8.0
# via pyright
packaging==24.0
# via pytest
pluggy==1.4.0
pluggy==1.5.0
# via pytest
pycparser==2.22
# via cffi
pyright==1.1.359
pyright==1.1.361
# via -r typing.in
pytest==8.1.1
pytest==8.2.0
# via -r typing.in
python-dotenv==1.0.1
# via -r typing.in
Expand Down
2 changes: 1 addition & 1 deletion src/flask/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def decorator(*args: t.Any, **kwargs: t.Any) -> t.Any:
gen = generator_or_function(*args, **kwargs) # type: ignore[operator]
return stream_with_context(gen)

return update_wrapper(decorator, generator_or_function) # type: ignore[arg-type]
return update_wrapper(decorator, generator_or_function) # type: ignore[arg-type, return-value]

def generator() -> t.Iterator[t.AnyStr | None]:
ctx = _cv_request.get(None)
Expand Down