Skip to content

Commit 5b55dac

Browse files
committed
Merge branch 'release/0.11.6'
2 parents 2047065 + 3c41841 commit 5b55dac

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "taskiq"
3-
version = "0.11.5"
3+
version = "0.11.6"
44
description = "Distributed task queue with full async support"
55
authors = ["Pavel Kirilin <[email protected]>"]
66
maintainers = ["Pavel Kirilin <[email protected]>"]

taskiq/depends/progress_tracker.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ class TaskProgress(GenericModel, Generic[_ProgressType]):
3131
state: Union[TaskState, str]
3232
meta: Optional[_ProgressType]
3333

34+
class Config:
35+
arbitrary_types_allowed = True
36+
3437

3538
class ProgressTracker(Generic[_ProgressType]):
3639
"""Task's dependency to set progress."""

0 commit comments

Comments
 (0)