File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ dynamic = ["version"]
43
43
44
44
dependencies = [
45
45
" taskiq>=0.10.0,<1.0.0" ,
46
- " faststream>=0.3.0,<1.0 .0" ,
46
+ " faststream>=0.3.14,<0.5 .0" ,
47
47
]
48
48
49
49
[project .optional-dependencies ]
Original file line number Diff line number Diff line change 1
1
"""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 2
2
import warnings
3
3
4
4
import anyio
5
- from faststream ._compat import TypeAlias , override
6
5
from faststream .app import FastStream
7
- from faststream .broker .core .asyncronous import BrokerAsyncUsecase
6
+ from faststream .broker .core .asynchronous import BrokerAsyncUsecase
8
7
from faststream .types import SendableMessage
9
8
from taskiq import AsyncBroker , BrokerMessage
10
9
from taskiq .acks import AckableMessage
11
10
from taskiq .decor import AsyncTaskiqDecoratedTask
11
+ from typing_extensions import TypeAlias , override
12
12
13
13
from taskiq_faststream .serializer import PatchedSerializer
14
14
from taskiq_faststream .types import ScheduledTask
Original file line number Diff line number Diff line change 1
1
from datetime import datetime , timedelta
2
2
from typing import Optional , Union
3
3
4
- from faststream . _compat import TypedDict
4
+ from typing_extensions import TypedDict
5
5
6
6
7
7
class ScheduledTask (TypedDict , total = False ):
Original file line number Diff line number Diff line change 4
4
from unittest .mock import MagicMock
5
5
6
6
import pytest
7
- from faststream .broker .core .asyncronous import BrokerAsyncUsecase
7
+ from faststream .broker .core .asynchronous import BrokerAsyncUsecase
8
8
from faststream .utils .functions import timeout_scope
9
9
from taskiq import AsyncBroker , TaskiqScheduler
10
10
from taskiq .cli .scheduler .args import SchedulerArgs
You can’t perform that action at this time.
0 commit comments