Skip to content

Commit

Permalink
chore: bumped package versions (#1270)
Browse files Browse the repository at this point in the history
  • Loading branch information
davorrunje authored Feb 27, 2024
1 parent 16bd174 commit b375025
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- run: pip install smokeshow

- uses: dawidd6/[email protected].1 # nosemgrep
- uses: dawidd6/[email protected].2 # nosemgrep
with:
workflow: test.yaml
commit: ${{ github.event.workflow_run.head_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"filename": "docs/docs/en/release.md",
"hashed_secret": "35675e68f4b5af7b995d9205ad0fc43842f16450",
"is_verified": false,
"line_number": 625,
"line_number": 676,
"is_secret": false
}
],
Expand Down Expand Up @@ -163,5 +163,5 @@
}
]
},
"generated_at": "2024-02-13T14:33:50Z"
"generated_at": "2024-02-27T08:00:31Z"
}
3 changes: 1 addition & 2 deletions faststream/kafka/fastapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ def subscriber(
[Callable[P_HandlerParams, T_HandlerReturn]],
HandlerCallWrapper[ConsumerRecord, P_HandlerParams, T_HandlerReturn],
]:
return super().subscriber(
topics[0], *topics, **broker_kwargs)
return super().subscriber(topics[0], *topics, **broker_kwargs)

@staticmethod
def _setup_log_context(
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ docs = [

# dev dependencies
devdocs = [
"mkdocs-material==9.5.10",
"mkdocs-material==9.5.11",
"mkdocs-static-i18n==1.2.0",
"mdx-include==1.4.2",
"mkdocstrings[python]==0.24.0",
"mkdocs-literate-nav==0.6.1",
"mkdocs-git-revision-date-localized-plugin==1.2.2",
"mkdocs-git-revision-date-localized-plugin==1.2.4",
"mike==2.0.0", # versioning
"mkdocs-minify-plugin==0.7.2",
"mkdocs-macros-plugin==1.0.5", # includes with variables
Expand All @@ -108,8 +108,8 @@ lint = [
"confluent-kafka-stubs; python_version >= '3.11'",
"mypy==1.8.0",
"ruff==0.2.1",
"bandit==1.7.6",
"semgrep==1.61.1",
"bandit==1.7.7",
"semgrep==1.62.0",
]

test-core = [
Expand All @@ -125,7 +125,7 @@ testing = [
"faststream[test-core]",
"fastapi==0.109.2",
"pydantic-settings>=2.0.0,<3.0.0",
"httpx==0.26.0",
"httpx==0.27.0",
"PyYAML==6.0.1",
"watchfiles==0.21.0",
"email-validator==2.1.0.post1",
Expand Down
4 changes: 3 additions & 1 deletion tests/brokers/redis/test_consume.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ async def test_consume_group_with_last_id(
queue: str,
full_broker: RedisBroker,
):
@full_broker.subscriber(stream=StreamSub(queue, group="group", consumer=queue, last_id="0"))
@full_broker.subscriber(
stream=StreamSub(queue, group="group", consumer=queue, last_id="0")
)
async def handler(msg: RedisMessage):
...

Expand Down

0 comments on commit b375025

Please sign in to comment.