File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11name : Release python package
22
33on :
4- push :
5- tags :
6- - " * "
4+ release :
5+ types :
6+ - released
77
88jobs :
99 deploy_docs :
4747 python-version : " 3.11"
4848 - name : Install deps
4949 run : poetry install
50+ - name : Set version
51+ run : poetry version "${{ github.ref_name }}"
5052 - name : Release package
5153 env :
5254 POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " taskiq"
3- version = " 0.11.6 "
3+ version = " 0.0.0 "
44description = " Distributed task queue with full async support"
55authors = [" Pavel Kirilin <win10@list.ru>" ]
66maintainers = [" Pavel Kirilin <win10@list.ru>" ]
Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ async def unschedule(self) -> None:
4848
4949 def __str__ (self ) -> str :
5050 return (
51- "CreatedSchedule( "
51+ "CreatedSchedule< "
5252 f"id={ self .schedule_id } , "
5353 f"time={ self .task .time } , "
5454 f"cron={ self .task .cron } , "
5555 f"cron_offset={ self .task .cron_offset or 'UTC' } , "
5656 f"task_name={ self .task .task_name } , "
5757 f"args={ self .task .args } , "
58- f"kwargs={ self .task .kwargs } ) "
58+ f"kwargs={ self .task .kwargs } > "
5959 )
You can’t perform that action at this time.
0 commit comments