File tree Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ jobs:
2121 - name : Set up Python
2222 uses : actions/setup-python@v5
2323 with :
24- python-version : " 3.8 "
24+ python-version : 3.13
2525 cache : " pip"
2626 cache-dependency-path : pyproject.toml
2727
2828 - uses : actions/cache@v4
29- id : cache
29+ id : cachex2
3030 with :
3131 path : ${{ env.pythonLocation }}
3232 key : ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish
4141 - name : Publish
42424343 with :
44- password : ${{ secrets.PYPI_TOKEN }}
44+ skip-existing : true
4545
4646 - name : Dump GitHub context
4747 env :
Original file line number Diff line number Diff line change 1818 - uses : actions/checkout@v4
1919 - uses : actions/setup-python@v5
2020 with :
21- python-version : 3.9
21+ python-version : 3.13
2222
2323 - uses : actions/cache@v4
2424 id : cache
9494
9595 - uses : actions/setup-python@v5
9696 with :
97- python-version : 3.9
97+ python-version : 3.13
9898
9999 - uses : astral-sh/setup-uv@v6
100100 with :
Original file line number Diff line number Diff line change 1- [build-system ]
2- requires = [" hatchling" ]
3- build-backend = " hatchling.build"
4-
51[project ]
62name = " taskiq-faststream"
3+ version = " 0.2.1"
74description = " FastStream - taskiq integration to schedule FastStream tasks"
85readme = " README.md"
96authors = [
@@ -39,7 +36,6 @@ classifiers = [
3936 " Framework :: Pydantic :: 2" ,
4037]
4138
42- dynamic = [" version" ]
4339
4440dependencies = [
4541 " taskiq>=0.11.0,<0.12.0" ,
Original file line number Diff line number Diff line change 11"""FastStream - taskiq integration to schedule FastStream tasks."""
22
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