We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b2e9afc + 60114cc commit 34ceb9dCopy full SHA for 34ceb9d
2 files changed
.github/workflows/release.yml
@@ -10,14 +10,14 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
+ - name: Install poetry
14
+ run: pipx install poetry
15
- name: Set up Python
- uses: actions/setup-python@v2
16
+ uses: actions/setup-python@v4
17
with:
18
python-version: "3.9"
19
- name: Install deps
- uses: knowsuchagency/poetry-install@v1
- env:
20
- POETRY_VIRTUALENVS_CREATE: false
+ run: poetry install
21
- name: Release package
22
env:
23
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "taskiq-aio-pika"
3
-version = "0.0.7"
+version = "0.0.8"
4
description = "RabbitMQ broker for taskiq"
5
authors = ["Pavel Kirilin <win10@list.ru>"]
6
readme = "README.md"
0 commit comments