File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ dynamic = ["version"]
4343
4444dependencies = [
4545 " taskiq>=0.10.0,<1.0.0" ,
46- " faststream>=0.3.0,<1.0 .0" ,
46+ " faststream>=0.3.14,<0.5 .0" ,
4747]
4848
4949[project .optional-dependencies ]
Original file line number Diff line number Diff line change 11"""FastStream - taskiq integration to schedule FastStream tasks."""
2- __version__ = "0.1.6 "
2+ __version__ = "0.1.7 "
Original file line number Diff line number Diff line change 22import warnings
33
44import anyio
5- from faststream ._compat import TypeAlias , override
65from faststream .app import FastStream
7- from faststream .broker .core .asyncronous import BrokerAsyncUsecase
6+ from faststream .broker .core .asynchronous import BrokerAsyncUsecase
87from faststream .types import SendableMessage
98from taskiq import AsyncBroker , BrokerMessage
109from taskiq .acks import AckableMessage
1110from taskiq .decor import AsyncTaskiqDecoratedTask
11+ from typing_extensions import TypeAlias , override
1212
1313from taskiq_faststream .serializer import PatchedSerializer
1414from taskiq_faststream .types import ScheduledTask
Original file line number Diff line number Diff line change 11from datetime import datetime , timedelta
22from typing import Optional , Union
33
4- from faststream . _compat import TypedDict
4+ from typing_extensions import TypedDict
55
66
77class ScheduledTask (TypedDict , total = False ):
Original file line number Diff line number Diff line change 44from unittest .mock import MagicMock
55
66import pytest
7- from faststream .broker .core .asyncronous import BrokerAsyncUsecase
7+ from faststream .broker .core .asynchronous import BrokerAsyncUsecase
88from faststream .utils .functions import timeout_scope
99from taskiq import AsyncBroker , TaskiqScheduler
1010from taskiq .cli .scheduler .args import SchedulerArgs
You can’t perform that action at this time.
0 commit comments