Skip to content

Commit a8376ca

Browse files
committed
test: fix compatibility
1 parent 3edf360 commit a8376ca

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
strategy:
4242
matrix:
43-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
43+
python-version: ["3.8", "3.9", "3.10", "3.11"]
4444
pydantic-version: ["pydantic-v1", "pydantic-v2"]
4545
fail-fast: false
4646

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ classifiers = [
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28-
"Programming Language :: Python :: 3.12",
2928
"Operating System :: OS Independent",
3029
"Topic :: Software Development :: Libraries :: Python Modules",
3130
"Topic :: Software Development :: Libraries",

taskiq_faststream/broker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def task( # type: ignore[override]
7575
*,
7676
schedule: typing.List[ScheduledTask],
7777
**kwargs: PublishParameters,
78-
) -> AsyncTaskiqDecoratedTask[[], None]:
78+
) -> AsyncTaskiqDecoratedTask[..., None]:
7979
"""Register FastStream scheduled task.
8080
8181
Args:

0 commit comments

Comments
 (0)