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

chore(deps): bump the pip group with 8 updates #1848

Merged
merged 4 commits into from
Oct 15, 2024
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
2 changes: 1 addition & 1 deletion faststream/utils/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def timeout_scope(
raise_timeout: bool = False,
) -> ContextManager[anyio.CancelScope]:
scope: Callable[[Optional[float]], ContextManager[anyio.CancelScope]]
scope = anyio.fail_after if raise_timeout else anyio.move_on_after # type: ignore[assignment]
scope = anyio.fail_after if raise_timeout else anyio.move_on_after

return scope(timeout)

Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ cli = [
optionals = ["faststream[rabbit,kafka,confluent,nats,redis,otel,cli]"]

devdocs = [
"mkdocs-material==9.5.39",
"mkdocs-material==9.5.40",
"mkdocs-static-i18n==1.2.3",
"mdx-include==1.4.2",
"mkdocstrings[python]==0.26.1",
"mkdocstrings[python]==0.26.2",
"mkdocs-literate-nav==0.6.1",
"mkdocs-git-revision-date-localized-plugin==1.2.9",
"mike==2.1.3", # versioning
"mkdocs-minify-plugin==0.8.0",
"mkdocs-macros-plugin==1.2.0", # includes with variables
"mkdocs-macros-plugin==1.3.5", # includes with variables
"mkdocs-glightbox==0.4.0", # img zoom
"pillow", # required for mkdocs-glightbo
"cairosvg", # required for mkdocs-glightbo
Expand All @@ -104,7 +104,7 @@ devdocs = [

types = [
"faststream[optionals]",
"mypy==1.11.2",
"mypy==1.12.0",
# mypy extensions
"types-Deprecated",
"types-PyYAML",
Expand All @@ -120,12 +120,13 @@ lint = [
"faststream[types]",
"ruff==0.6.9",
"bandit==1.7.10",
"semgrep==1.90.0",
"semgrep==1.91.0",
"codespell==2.3.0",
]

test-core = [
"coverage[toml]==7.6.1",
"coverage[toml]==7.6.1; python_version == '3.8'",
"coverage[toml]==7.6.3; python_version >= '3.9'",
"pytest==8.3.3",
"pytest-asyncio==0.24.0",
"dirty-equals==0.8.0",
Expand All @@ -134,7 +135,7 @@ test-core = [

testing = [
"faststream[test-core]",
"fastapi==0.115.0",
"fastapi==0.115.2",
"pydantic-settings>=2.0.0,<3.0.0",
"httpx==0.27.2",
"PyYAML==6.0.2",
Expand All @@ -144,7 +145,7 @@ testing = [
dev = [
"faststream[optionals,lint,testing,devdocs]",
"pre-commit==3.5.0; python_version < '3.9'",
"pre-commit==4.0.0; python_version >= '3.9'",
"pre-commit==4.0.1; python_version >= '3.9'",
"detect-secrets==1.5.0",
]

Expand Down
Loading