Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,18 @@ jobs:
env:
UV_SYSTEM_PYTHON: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: '3.14'
fetch-depth: 0
- id: setup-uv
name: Setup UV
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-suffix: '3.14'
cache-suffix: "3.13"
github-token: ${{ github.token }}
version: "3.14"
- run: uv version "${GITHUB_REF_NAME}"
python-version: "3.13"
- run: uv build
- name: Release package
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
deploy_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
cmd: ["black", "ruff", "mypy"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0
- id: setup-uv
uses: astral-sh/setup-uv@v7
with:
Expand All @@ -43,23 +44,19 @@ jobs:
pydantic_ver: ["<2", ">=2.5,<3"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: "${{ matrix.os }}"
env:
UV_SYSTEM_PYTHON: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: '${{ matrix.py_version }}'
fetch-depth: 0
- id: setup-uv
name: Setup UV
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-suffix: ${{ matrix.py_version }}
github-token: ${{ github.token }}
python-version: '${{ matrix.py_version }}'
version: "latest"
- name: Install deps
run: uv sync --all-extras
Expand Down
6 changes: 3 additions & 3 deletions docs/guide/message-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ After that, you can use your preferred serializer in your project like this:

```python
from taskiq import InMemoryBroker
from taskiq.serializers import ORJSONSerializer
from taskiq.serializers import ORJSONSerializer

broker = InMemoryBroker().with_serializer(ORJSONSerializer())
```
Expand All @@ -123,7 +123,7 @@ broker = InMemoryBroker().with_serializer(ORJSONSerializer())

```python
from taskiq import InMemoryBroker
from taskiq.serializers import MSGPackSerializer
from taskiq.serializers import MSGPackSerializer

broker = InMemoryBroker().with_serializer(MSGPackSerializer())
```
Expand All @@ -132,7 +132,7 @@ broker = InMemoryBroker().with_serializer(MSGPackSerializer())

```python
from taskiq import InMemoryBroker
from taskiq.serializers import CBORSerializer
from taskiq.serializers import CBORSerializer

broker = InMemoryBroker().with_serializer(CBORSerializer())
```
Expand Down
Loading
Loading