File tree 4 files changed +9
-11
lines changed 4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ jobs:
21
21
- name : Set up Python
22
22
uses : actions/setup-python@v5
23
23
with :
24
- python-version : " 3.8 "
24
+ python-version : 3.13
25
25
cache : " pip"
26
26
cache-dependency-path : pyproject.toml
27
27
28
28
- uses : actions/cache@v4
29
- id : cache
29
+ id : cachex2
30
30
with :
31
31
path : ${{ env.pythonLocation }}
32
32
key : ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish
41
41
- name : Publish
42
42
uses : pypa/gh-action-pypi-publish@v1.9.0
43
43
with :
44
- password : ${{ secrets.PYPI_TOKEN }}
44
+ skip-existing : true
45
45
46
46
- name : Dump GitHub context
47
47
env :
Original file line number Diff line number Diff line change 18
18
- uses : actions/checkout@v4
19
19
- uses : actions/setup-python@v5
20
20
with :
21
- python-version : 3.9
21
+ python-version : 3.13
22
22
23
23
- uses : actions/cache@v4
24
24
id : cache
94
94
95
95
- uses : actions/setup-python@v5
96
96
with :
97
- python-version : 3.9
97
+ python-version : 3.13
98
98
99
99
- uses : astral-sh/setup-uv@v6
100
100
with :
Original file line number Diff line number Diff line change 1
- [build-system ]
2
- requires = [" hatchling" ]
3
- build-backend = " hatchling.build"
4
-
5
1
[project ]
6
2
name = " taskiq-faststream"
3
+ version = " 0.2.1"
7
4
description = " FastStream - taskiq integration to schedule FastStream tasks"
8
5
readme = " README.md"
9
6
authors = [
@@ -39,7 +36,6 @@ classifiers = [
39
36
" Framework :: Pydantic :: 2" ,
40
37
]
41
38
42
- dynamic = [" version" ]
43
39
44
40
dependencies = [
45
41
" taskiq>=0.11.0,<0.12.0" ,
Original file line number Diff line number Diff line change 1
1
"""FastStream - taskiq integration to schedule FastStream tasks."""
2
2
3
- __version__ = "0.2.1"
3
+ from importlib .metadata import version
4
+
5
+ __version__ = version ("taskiq_faststream" )
You can’t perform that action at this time.
0 commit comments